UNPKG

intl-tel-input

Version:

A JavaScript plugin for entering and validating international telephone numbers

32 lines (25 loc) 805 B
"use strict"; describe("placeholderNumberType:", function() { beforeEach(function() { intlSetup(true); input = $("<input>").wrap("div"); }); afterEach(function() { intlTeardown(); }); it("init plugin with default placeholderNumberType sets the placeholder correctly", function() { iti = window.intlTelInput(input[0], { nationalMode: true, initialCountry: "gb", }); expect(input.attr("placeholder")).toEqual("07400 123456"); }); it("init plugin with placeholderNumberType=FIXED_LINE sets the placeholder correctly", function() { iti = window.intlTelInput(input[0], { nationalMode: true, initialCountry: "gb", placeholderNumberType: "FIXED_LINE", }); expect(input.attr("placeholder")).toEqual("0121 234 5678"); }); });