Skip to content

Commit

Permalink
fix: Tests
Browse files Browse the repository at this point in the history
  • Loading branch information
bcanfield committed Aug 16, 2023
1 parent 027f777 commit 56729e5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion __tests__/core/schemas.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ test.each(readdirSync(prismaSchemaDirectory))(
`node ${nexquikMain} -schema ${path.join(
prismaSchemaDirectory,
schemaPath
)} -out ${testOutputDirectory}`
)} -output ${testOutputDirectory}`
);
console.log(`Schema Test: ${schemaPath}`);
expect(isDirectoryNotEmpty(testOutputDirectory)).toBeTruthy();
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"dev:3": "npm pack --silent",
"dev:4": "mv \"$(ls *.tgz)\" \"nexquik.tgz\"",
"dev:5": "npm i && npm i --save-dev ./nexquik.tgz ",
"dev:6": "nexquik -out ./devNexquikApp -schema ./prisma/schema.prisma",
"dev:6": "nexquik -output ./devNexquikApp -schema ./prisma/schema.prisma",
"dev:7": "cd devNexquikApp && npm i && npm run dev",
"test": "jest --silent=false",
"clean": "rimraf dist/",
Expand Down Expand Up @@ -76,6 +76,7 @@
"copyfiles": "^2.4.1",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"nexquik": "file:nexquik.tgz",
"nodemon": "^2.0.22",
"npm-run-all": "^4.1.5",
"npm-watch": "^0.11.0",
Expand Down
2 changes: 1 addition & 1 deletion templateRoot/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"lint": "next lint",
"typecheck": "tsc",
"generate": "prisma generate",
"auto-generate": "nexquik -out ./app"
"auto-generate": "nexquik -output ./app"
},
"dependencies": {
"@prisma/client": "5.1.1",
Expand Down

0 comments on commit 56729e5

Please sign in to comment.