Skip to content

Commit 68f793d

Browse files
committed
fix: tests were commented out rip
1 parent b783da5 commit 68f793d

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
],
2929
"devDependencies": {
3030
"@json-schema-tools/dereferencer": "^1.5.7",
31-
"@json-schema-tools/meta-schema": "^1.7.0",
31+
"@json-schema-tools/meta-schema": "^1.7.5",
3232
"@types/jest": "^29.2.0",
3333
"@types/lodash.camelcase": "^4.3.7",
3434
"@types/lodash.deburr": "^4.1.7",

src/integration-tests/runner.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ const getTestCaseBase = async (names: string[], languages: string[]): Promise<Te
3737
const testCases: TestCase[] = [];
3838

3939
languages.forEach((language) => {
40-
if (language !== "ts") { return; }
40+
// if (language !== "ts") { return; }
4141

4242
names.forEach((name) => {
43-
if (name !== "json-schema") { return; }
43+
// if (name !== "json-schema") { return; }
4444

4545
promises.push(readFile(`${testCaseDir}/${name}.json`, "utf8")
4646
.then((fileContents) => {

0 commit comments

Comments
 (0)