From 31bf6b928dca81cc04278b10414b9cf752313469 Mon Sep 17 00:00:00 2001 From: Chris Wilkinson Date: Thu, 11 Jul 2024 11:55:26 +0100 Subject: [PATCH] Add more cases to target Refs #31, f866f53b59cdfafa7d9ac5e7958d0c41581171f2 --- test/Iso3166.test.ts | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) 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())