forked from eclipse-thingweb/playground
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.test.js
46 lines (41 loc) · 1.77 KB
/
index.test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/*
* Copyright (c) 2023 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0, or the W3C Software Notice and
* Document License (2015-05-13) which is available at
* https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document.
*
* SPDX-License-Identifier: EPL-2.0 OR W3C-20150513
*/
const { describe, test, expect, beforeAll } = require("@jest/globals");
const tdSchema = require("./examples/schema/td-schema.json");
const tdExample = require("./examples/json/td-example.json");
const openApiSchema = require("./examples/schema/open-api-schema.json");
const openApiExample = require("./examples/json/open-api-example.json");
const jsonSpellChecker = require("./index");
describe("checkTypos", () => {
describe("with TD JSON schema", () => {
beforeAll(() => {
jsonSpellChecker.configure(tdSchema);
});
test("should return correct amount of typos", () => {
const typos = jsonSpellChecker.checkTypos(JSON.stringify(tdExample));
expect(typos.length).toBe(tdExample.typoCount);
});
});
describe("with Open API JSON schema", () => {
beforeAll(() => {
jsonSpellChecker.configure(openApiSchema);
});
test("should return correct amount of typos", () => {
jsonSpellChecker.configure(openApiSchema);
const typos = jsonSpellChecker.checkTypos(JSON.stringify(openApiExample));
expect(typos.length).toBe(openApiExample.typoCount);
});
});
});