Skip to content

Commit b57053d

Browse files
committed
try .cmd instead of .exe
1 parent 5697da1 commit b57053d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/core/src/test/shared/utilities/testUtils.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ describe('writeEnv', function () {
3131
describe('createExecutableFile', function () {
3232
it('creates a file that can be executes in a child process', async function () {
3333
const tempDir = await createTestWorkspaceFolder()
34-
const filePath = path.join(tempDir.uri.fsPath, `exec${isWin() ? '.exe' : ''}`)
34+
const filePath = path.join(tempDir.uri.fsPath, `exec${isWin() ? '.cmd' : ''}`)
3535
await createExecutableFile(filePath, '')
3636

3737
const proc = new ChildProcess(filePath)

0 commit comments

Comments
 (0)