Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Autoría | Ultima modificación | Ver Log |

"use strict";

describe("getCountryData: use static method getCountryData", function() {

  var countryData;

  beforeEach(function() {
    intlSetup();
    countryData = window.intlTelInputGlobals.getCountryData();
  });

  afterEach(function() {
    intlTeardown();
    countryData = null;
  });

  it("gets the country data object", function() {
    expect(countryData.length).toEqual(totalCountries);
  });

});