| Server IP : 94.136.191.34 / Your IP : 216.73.216.25 Web Server : Apache System : Linux hostpanel.netbiz.in 5.15.0-130-generic #140-Ubuntu SMP Wed Dec 18 17:59:53 UTC 2024 x86_64 User : omkar.com_6nnuz6y629h ( 10087) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system,proc_open,popen MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/vhosts/omkar.com/httpdocs/assets/build/src/spec/tests/methods/ |
Upload File : |
"use strict";
describe("setNumber: init (vanilla) plugin and call setNumber with a valid UK number", function() {
beforeEach(function() {
intlSetup();
input = $("<input>");
input.intlTelInput();
input.intlTelInput("setNumber", "+447733123456");
});
afterEach(function() {
input.intlTelInput("destroy");
input = null;
});
it("sets the input val to the given number (no formatting)", function() {
expect(getInputVal()).toEqual("+447733123456");
});
it("updates the flag", function() {
expect(getSelectedFlagElement()).toHaveClass("gb");
});
});
describe("setNumber: init plugin with utils", function() {
beforeEach(function() {
intlSetup(true);
input = $("<input>");
input.intlTelInput();
});
afterEach(function() {
input.intlTelInput("destroy");
input = null;
});
describe("call setNumber with a valid UK number, and format=NATIONAL", function() {
beforeEach(function() {
input.intlTelInput("setNumber", "+447733123456", intlTelInputUtils.numberFormat.NATIONAL);
});
it("sets the input val to the given number, with default formatting", function() {
expect(getInputVal()).toEqual("07733 123456");
});
});
describe("call setNumber with a valid UK number, with format=INTERNATIONAL", function() {
beforeEach(function() {
input.intlTelInput("setNumber", "+447733123456", intlTelInputUtils.numberFormat.INTERNATIONAL);
});
it("sets the input val to the given number, with INTERNATIONAL formatting", function() {
expect(getInputVal()).toEqual("+44 7733 123456");
});
});
});