Skip to content

Commit f9267aa

Browse files
authored
feat: include vitest.explorer VS Code extension (#1630)
<!-- 👋 Hi, thanks for sending a PR to create-typescript-app! 💖. Please fill out all fields below and make sure each item is true and [x] checked. Otherwise we may not be able to review your PR. --> ## PR Checklist - [x] Addresses an existing open issue: fixes #1628 - [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 <!-- Description of what is changed and how the code change does that. --> This PR adds the Vitest Explorer extension
1 parent 9034d25 commit f9267aa

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.vscode/extensions.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"DavidAnson.vscode-markdownlint",
44
"dbaeumer.vscode-eslint",
55
"esbenp.prettier-vscode",
6-
"streetsidesoftware.code-spell-checker"
6+
"streetsidesoftware.code-spell-checker",
7+
"vitest.explorer"
78
]
89
}

src/steps/writing/creation/dotVSCode.test.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,8 @@ describe("createDotVSCode", () => {
103103
"DavidAnson.vscode-markdownlint",
104104
"dbaeumer.vscode-eslint",
105105
"esbenp.prettier-vscode",
106-
"streetsidesoftware.code-spell-checker"
106+
"streetsidesoftware.code-spell-checker",
107+
"vitest.explorer"
107108
]
108109
}
109110
",
@@ -177,7 +178,8 @@ describe("createDotVSCode", () => {
177178
"DavidAnson.vscode-markdownlint",
178179
"dbaeumer.vscode-eslint",
179180
"esbenp.prettier-vscode",
180-
"streetsidesoftware.code-spell-checker"
181+
"streetsidesoftware.code-spell-checker",
182+
"vitest.explorer"
181183
]
182184
}
183185
",

src/steps/writing/creation/dotVSCode.ts

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ export async function createDotVSCode(options: Options) {
1010
"dbaeumer.vscode-eslint",
1111
"esbenp.prettier-vscode",
1212
!options.excludeLintSpelling && "streetsidesoftware.code-spell-checker",
13+
!options.excludeTests && "vitest.explorer",
1314
].filter(Boolean),
1415
}),
1516
...(options.excludeTests && !options.bin

0 commit comments

Comments
 (0)