We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62a00c4 commit b7004bdCopy full SHA for b7004bd
extensions/vscode/src/test/suite/commands/create.test.ts
@@ -208,7 +208,7 @@ suite("create command", () => {
208
209
test("shows error when `dart_frog create` command fails", async () => {
210
const error = new Error("Command failed");
211
- const createCommand = "dart_frog create 'my_project'";
+ const createCommand = `dart_frog create "my_project"`;
212
213
vscodeStub.window.showInputBox.returns("my_project");
214
childProcessStub.exec.withArgs(createCommand).yields(error);
0 commit comments