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 5697da1 commit b57053dCopy full SHA for b57053d
packages/core/src/test/shared/utilities/testUtils.test.ts
@@ -31,7 +31,7 @@ describe('writeEnv', function () {
31
describe('createExecutableFile', function () {
32
it('creates a file that can be executes in a child process', async function () {
33
const tempDir = await createTestWorkspaceFolder()
34
- const filePath = path.join(tempDir.uri.fsPath, `exec${isWin() ? '.exe' : ''}`)
+ const filePath = path.join(tempDir.uri.fsPath, `exec${isWin() ? '.cmd' : ''}`)
35
await createExecutableFile(filePath, '')
36
37
const proc = new ChildProcess(filePath)
0 commit comments