Skip to content

Commit

Permalink
Proper check of files that should be available
Browse files Browse the repository at this point in the history
  • Loading branch information
rolljee committed Oct 10, 2023
1 parent 796db9e commit 831ac04
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions test/commands/app/scaffold.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,11 @@ describe("app:scaffold", () => {

should(fs.existsSync("./blackmesa/tsconfig.node.json")).be.eql(true);
should(fs.existsSync("./blackmesa/tsconfig.web.json")).be.eql(true);
should(fs.existsSync("./blackmesa/.eslintrc.json")).be.eql(true);
should(fs.existsSync("./blackmesa/.gitignore")).be.eql(true);
should(fs.existsSync("./blackmesa/Dockerfile")).be.eql(true);
should(fs.existsSync("./blackmesa/docker-compose.yml")).be.eql(true);
should(fs.existsSync("./blackmesa/app.ts")).be.eql(true);
should(fs.existsSync("./blackmesa/package.json")).be.eql(true);
should(fs.existsSync("./blackmesa/README.md")).be.eql(true);
should(fs.existsSync("./blackmesa/tsconfig.json")).be.eql(true);
should(fs.existsSync("./blackmesa/jest.config.ts")).be.eql(true);
should(fs.existsSync("./blackmesa/turbo.json")).be.eql(true);
should(fs.existsSync("./blackmesa/start.sh")).be.eql(true);
}).timeout("60s");
});

0 comments on commit 831ac04

Please sign in to comment.