Skip to content

Commit

Permalink
test: ignore unsupported methods
Browse files Browse the repository at this point in the history
  • Loading branch information
ST-DDT committed Feb 22, 2023
1 parent ef16ee2 commit 91a0aa8
Showing 1 changed file with 20 additions and 3 deletions.
23 changes: 20 additions & 3 deletions test/all_functional.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,32 @@ const BROKEN_LOCALE_METHODS = {
companySuffix: ['az'],
},
location: {
state: ['az', 'cz', 'nb_NO', 'sk'],
stateAbbr: ['cz', 'sk'],
state: [
'az',
'cz',
'nb_NO',
'ro_MD', // Not supported by locale
'sk',
],
stateAbbr: [
'cz',
'sk',
'ro_MD', // Not supported by locale
],
},
string: {
fromCharacters: '*',
},
person: {
prefix: ['az', 'id_ID', 'ru', 'zh_CN', 'zh_TW'],
suffix: ['az', 'it', 'mk', 'pt_PT', 'ru'],
suffix: [
'az',
'it',
'mk',
'pt_PT',
'ro_MD', // Not supported by locale
'ru',
],
},
} satisfies Record<string, Record<string, '*' | KnownLocale[]>>;

Expand Down

0 comments on commit 91a0aa8

Please sign in to comment.