Skip to content

Commit

Permalink
fix: tests were commented out rip
Browse files Browse the repository at this point in the history
  • Loading branch information
BelfordZ committed May 7, 2024
1 parent b783da5 commit 68f793d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
],
"devDependencies": {
"@json-schema-tools/dereferencer": "^1.5.7",
"@json-schema-tools/meta-schema": "^1.7.0",
"@json-schema-tools/meta-schema": "^1.7.5",
"@types/jest": "^29.2.0",
"@types/lodash.camelcase": "^4.3.7",
"@types/lodash.deburr": "^4.1.7",
Expand Down
4 changes: 2 additions & 2 deletions src/integration-tests/runner.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ const getTestCaseBase = async (names: string[], languages: string[]): Promise<Te
const testCases: TestCase[] = [];

languages.forEach((language) => {
if (language !== "ts") { return; }
// if (language !== "ts") { return; }

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

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

0 comments on commit 68f793d

Please sign in to comment.