getCountries.test.js 325 B

12345678
  1. import metadata from '../metadata.min.json' assert { type: 'json' };
  2. import getCountries from './getCountries.js';
  3. describe('getCountries', function () {
  4. it('should get countries list', function () {
  5. expect(getCountries(metadata).indexOf('RU') > 0).to.be["true"];
  6. });
  7. });
  8. //# sourceMappingURL=getCountries.test.js.map