Skip to content

Commit dda6f2b

Browse files
A couple e2e fixups
1 parent 7af9e86 commit dda6f2b

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
"lint:spelling": "cspell \"**\" \".github/**/*\"",
6464
"prepare": "husky install",
6565
"setup": "npx --yes zx --quiet script/setup.js",
66-
"setup:test": "npx --yes zx --quiet script/setup.test.js",
66+
"setup:test": "npx --yes zx --quiet script/setup-test-e2e.js",
6767
"test": "vitest"
6868
},
6969
"type": "module",

Diff for: script/setup.test.js renamed to script/setup-test-e2e.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ const owner = "NewOwnerTest";
99
const title = "New Title Test";
1010
const repository = "new-repository-test";
1111

12-
await $`pnpm run setup --description ${description} --owner ${owner} --title ${title} --repository ${repository} --skip-api`;
12+
const result =
13+
await $`pnpm run setup --description ${description} --owner ${owner} --title ${title} --repository ${repository} --skip-api`;
14+
console.log({ result });
1315

1416
const newPackageJson = JSON.parse(
1517
(await fs.readFile("./package.json")).toString()

0 commit comments

Comments
 (0)