diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2024-02-14 22:26:29 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-15 03:26:29 +0000 |
commit | 6bf7b0055765c4f2011c9614753d6714dc09be65 (patch) | |
tree | 0e782ae66556eaa61a34d9f32d77c831b2443ce5 /test/dictionary-data-validate.test.js | |
parent | 7a4096240ce4faf70a785d047945388baa0daab3 (diff) |
Eslint rule updates (#673)
* Install unicorn
* Add rules
* Fix issues
* Install sonarjs
* Set up rules
* Fix issues
* Install eslint-plugin-import and fix import extensions
* Simplify permitted error names
Diffstat (limited to 'test/dictionary-data-validate.test.js')
-rw-r--r-- | test/dictionary-data-validate.test.js | 10 |
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() + ); }); }); }); |