Skip to content

Commit

Permalink
Fix rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
dvargas92495 committed Jul 22, 2022
1 parent cdda41c commit 3eb2416
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/remix-dev/__tests__/create-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,7 @@ describe("the create command", () => {
"--install",
"--typescript",
]);
expect(output).toContain(`Running init script on <TEMP_DIR>/remix-init-auto`);
expect(output).toContain(`Running init script on ${projectDir.replace(TEMP_DIR, "<TEMP_DIR>")}`);
expect(fse.existsSync(path.join(projectDir, "package.json"))).toBeTruthy();
expect(fse.existsSync(path.join(projectDir, "app/root.tsx"))).toBeTruthy();
expect(fse.existsSync(path.join(projectDir, "remix.init"))).toBeFalsy();
Expand Down

0 comments on commit 3eb2416

Please sign in to comment.