Skip to content

Commit

Permalink
chore: fix CLI test
Browse files Browse the repository at this point in the history
  • Loading branch information
chaance committed Mar 23, 2022
1 parent e0510d8 commit 115da5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/remix-dev/__tests__/cli-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ describe("remix cli", () => {
`💿 That's it! \`cd\` into "${projectDir}" and check the README for development and deploy instructions!`
);
expect(fs.existsSync(path.join(projectDir, "package.json"))).toBeTruthy();
expect(fs.existsSync(path.join(projectDir, "app/root.jsx"))).toBeTruthy();
expect(fs.existsSync(path.join(projectDir, "app/root.tsx"))).toBeTruthy();
});

it("works for a path to a tarball on disk", async () => {
Expand Down

0 comments on commit 115da5a

Please sign in to comment.