diff --git a/test/Iso3166.test.ts b/test/Iso3166.test.ts index 705a83f..6a76464 100644 --- a/test/Iso3166.test.ts +++ b/test/Iso3166.test.ts @@ -31,7 +31,16 @@ describe('guessCountry', () => { expect(actual).toStrictEqual(Option.some(expected)) }) - test.for(['Fayetteville GA (near Atlanta)', 'Mars', 'Southeast Asia', 'The UK'])("doesn't guess %s", input => { + test.for([ + 'Babol iran', + 'Düsseldorf', + 'Fayetteville GA (near Atlanta)', + 'Mars', + 'Norwich', + 'Southeast Asia', + 'The UK', + 'Yale university', + ])("doesn't guess %s", input => { const actual = _.guessCountry(input) expect(actual).toStrictEqual(Option.none())