Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 www 1
"use strict";
2
 
3
describe("getCountryData: use static method getCountryData", function() {
4
 
5
  var countryData;
6
 
7
  beforeEach(function() {
8
    intlSetup();
9
    countryData = window.intlTelInputGlobals.getCountryData();
10
  });
11
 
12
  afterEach(function() {
13
    intlTeardown();
14
    countryData = null;
15
  });
16
 
17
  it("gets the country data object", function() {
18
    expect(countryData.length).toEqual(totalCountries);
19
  });
20
 
21
});