Skip to content

Commit 2f8e90f

Browse files
chore: add --guide, --guide-title to migrate-test-e2e.js (#1136)
## PR Checklist - [x] Addresses an existing open issue: fixes #1135 - [x] That issue was marked as [`status: accepting prs`](https://github.com/JoshuaKGoldberg/create-typescript-app/issues?q=is%3Aopen+is%3Aissue+label%3A%22status%3A+accepting+prs%22) - [x] Steps in [CONTRIBUTING.md](https://github.com/JoshuaKGoldberg/create-typescript-app/blob/main/.github/CONTRIBUTING.md) were taken ## Overview Similar to #1134, adds the flags to the migration test.
1 parent 42d65ff commit 2f8e90f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

script/migrate-test-e2e.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const title = "Create TypeScript App";
1111

1212
await $({
1313
stdio: "inherit",
14-
})`c8 -o ./coverage -r html -r lcov --src src node ./bin/index.js --base everything --mode migrate --bin ./bin/index.js --description ${description} --email-github ${emailGithub} --email-npm ${emailNpm} --owner ${owner} --title ${title} --repository ${repository} --skip-all-contributors-api --skip-github-api --skip-install`;
14+
})`c8 -o ./coverage -r html -r lcov --src src node ./bin/index.js --base everything --mode migrate --bin ./bin/index.js --description ${description} --email-github ${emailGithub} --email-npm ${emailNpm} --guide https://www.joshuakgoldberg.com/blog/contributing-to-a-create-typescript-app-repository --guide-title "Contributing to a create-typescript-app Repository" --owner ${owner} --title ${title} --repository ${repository} --skip-all-contributors-api --skip-github-api --skip-install`;
1515

1616
const { stdout: gitStatus } = await $`git status`;
1717
console.log(`Stdout from running \`git status\`:\n${gitStatus}`);

0 commit comments

Comments
 (0)