summaryrefslogtreecommitdiff
path: root/test/dictionary-data-validate.test.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/dictionary-data-validate.test.js')
-rw-r--r--test/dictionary-data-validate.test.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/dictionary-data-validate.test.js b/test/dictionary-data-validate.test.js
index 4c96cdb0..b09e4ae0 100644
--- a/test/dictionary-data-validate.test.js
+++ b/test/dictionary-data-validate.test.js
@@ -48,11 +48,11 @@ describe('Dictionary validation', () => {
describe.each(testCases)('Test dictionary $name', ({name, valid}) => {
it(`should be ${valid ? 'valid' : 'invalid'}`, async ({expect}) => {
const archive = createTestDictionaryArchive(name);
- if (valid) {
- await expect(dictionaryValidate.validateDictionary(null, archive, schemas)).resolves.not.toThrow();
- } else {
- await expect(dictionaryValidate.validateDictionary(null, archive, schemas)).rejects.toThrow();
- }
+ await (
+ valid ?
+ expect(dictionaryValidate.validateDictionary(null, archive, schemas)).resolves.not.toThrow() :
+ expect(dictionaryValidate.validateDictionary(null, archive, schemas)).rejects.toThrow()
+ );
});
});
});