diff options
author | Cashew <52880648+Scrub1492@users.noreply.github.com> | 2023-12-25 15:51:01 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-25 08:51:01 +0000 |
commit | 8e95d99e6a1891eaf9331f6384fa3b1a1065b871 (patch) | |
tree | 2c5977e66410b502da436da7381d67b38698b5c4 /test/dictionary-data-validate.test.js | |
parent | e0659a84b2c85344e000536f4d3fa53bd5932567 (diff) |
Style updates (#447)
* style updates
* style updates
* style updates
* revert changes to dev/lib/handlebars
* revert changes to dev/lib/handlebars
* revert changes to dev/lib/handlebars
Diffstat (limited to 'test/dictionary-data-validate.test.js')
-rw-r--r-- | test/dictionary-data-validate.test.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/dictionary-data-validate.test.js b/test/dictionary-data-validate.test.js index c54f7dbb..5334bc2e 100644 --- a/test/dictionary-data-validate.test.js +++ b/test/dictionary-data-validate.test.js @@ -18,7 +18,7 @@ import {fileURLToPath} from 'node:url'; import path from 'path'; -import {describe, test} from 'vitest'; +import {describe, it} from 'vitest'; import * as dictionaryValidate from '../dev/dictionary-validate.js'; import {createDictionaryArchive} from '../dev/util.js'; @@ -46,7 +46,7 @@ describe('Dictionary validation', () => { ]; const schemas = dictionaryValidate.getSchemas(); describe.each(testCases)('Test dictionary $name', ({name, valid}) => { - test(`Should be ${valid ? 'valid' : 'invalid'}`, async ({expect}) => { + it(`should be ${valid ? 'valid' : 'invalid'}`, async ({expect}) => { const archive = createTestDictionaryArchive(name); if (valid) { await expect(dictionaryValidate.validateDictionary(null, archive, schemas)).resolves.not.toThrow(); |