Skip to content

Commit

Permalink
test(dev): fix CLI test (#6698)
Browse files Browse the repository at this point in the history
  • Loading branch information
markdalgleish authored Jun 27, 2023
1 parent d8f4034 commit a91ddce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/remix-dev/__tests__/cli-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ describe("remix CLI", () => {
await interactWithShell(proc, [
{ question: /Where.*create.*app/i, type: [projectDir, ENTER] },
{ question: /What type of app/i, answer: /basics/i },
{ question: /Where.*deploy/i, answer: /express/i },
{ question: /Where.*deploy/i, answer: /remix/i },
{ question: /typescript or javascript/i, answer: /typescript/i },
{ question: /install/i, type: ["n", ENTER] },
]);
Expand All @@ -255,7 +255,7 @@ describe("remix CLI", () => {
await interactWithShell(proc, [
{ question: /Where.*create.*app/i, type: [projectDir, ENTER] },
{ question: /What type of app/i, answer: /basics/i },
{ question: /Where.*deploy/i, answer: /express/i },
{ question: /Where.*deploy/i, answer: /remix/i },
{ question: /typescript or javascript/i, answer: /javascript/i },
{ question: /install/i, type: ["n", ENTER] },
]);
Expand Down

0 comments on commit a91ddce

Please sign in to comment.