diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2022-05-16 20:09:38 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-16 20:09:38 -0400 |
commit | 5a723034b8ac9eb86854bdcb16f624d18fa17178 (patch) | |
tree | 3c33468b7e93c779b0010b92ac88a230222ee33d /test | |
parent | 84c9231a5e9733a6300d2edf1718b520467d7dc5 (diff) |
Dictionary validate updates (#2137)
* Reuse JsomSchema instance
* Install ajv
* Add support for using ajv as a JSON schema validator
* Update usage
Diffstat (limited to 'test')
-rw-r--r-- | test/test-dictionary.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test-dictionary.js b/test/test-dictionary.js index aea17919..477567b1 100644 --- a/test/test-dictionary.js +++ b/test/test-dictionary.js @@ -44,7 +44,7 @@ async function main() { let error = null; try { - await dictionaryValidate.validateDictionary(archive, schemas); + await dictionaryValidate.validateDictionary(null, archive, schemas); } catch (e) { error = e; } |