fix intl-linter tests

This commit is contained in:
Jamie Kyle 2022-10-10 12:12:57 -07:00 committed by GitHub
parent 958f13b9f2
commit 512d655d32
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -35,27 +35,27 @@ type Test = {
}; };
const tests: Record<string, Test> = { const tests: Record<string, Test> = {
err1: { 'icu:err1': {
messageformat: '{a, plural, other {a}} {b, plural, other {b}}', messageformat: '{a, plural, other {a}} {b, plural, other {b}}',
expectErrors: ['onePlural'], expectErrors: ['onePlural'],
}, },
err2: { 'icu:err2': {
messageformat: '{a, plural, other {{b, plural, other {b}}}}', messageformat: '{a, plural, other {{b, plural, other {b}}}}',
expectErrors: ['noNestedChoice', 'onePlural'], expectErrors: ['noNestedChoice', 'onePlural'],
}, },
err3: { 'icu:err3': {
messageformat: '{a, select, other {{b, select, other {b}}}}', messageformat: '{a, select, other {{b, select, other {b}}}}',
expectErrors: ['noNestedChoice'], expectErrors: ['noNestedChoice'],
}, },
err4: { 'icu:err4': {
messageformat: '{a, plural, offset:1 other {a}}', messageformat: '{a, plural, offset:1 other {a}}',
expectErrors: ['noOffset'], expectErrors: ['noOffset'],
}, },
err5: { 'icu:err5': {
messageformat: '{a, selectordinal, other {a}}', messageformat: '{a, selectordinal, other {a}}',
expectErrors: ['noOrdinal'], expectErrors: ['noOrdinal'],
}, },
err6: { 'icu:err6': {
messageformat: '$a$', messageformat: '$a$',
expectErrors: ['noLegacyVariables'], expectErrors: ['noLegacyVariables'],
}, },