Skip to content

Commit dc65f45

Browse files
committed
chore: update
1 parent 117797b commit dc65f45

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

tests/integration/dts/index.test.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ describe('dts when bundle: false', () => {
8282
cwd: fixturePath,
8383
// do not show output in test console
8484
stdio: 'ignore',
85+
shell: true,
8586
});
8687

8788
expect(result.status).toBe(0);
@@ -255,6 +256,7 @@ describe('dts when bundle: true', () => {
255256
cwd: fixturePath,
256257
// do not show output in test console
257258
stdio: 'ignore',
259+
shell: true,
258260
});
259261

260262
expect(result.status).toBe(0);
@@ -519,6 +521,7 @@ describe('dts when build: true', () => {
519521
cwd: fixturePath,
520522
// do not show output in test console
521523
stdio: 'ignore',
524+
shell: true,
522525
});
523526

524527
expect(result.status).toBe(0);
@@ -534,6 +537,7 @@ describe('dts when build: true', () => {
534537
cwd: fixturePath,
535538
// do not show output in test console
536539
stdio: 'pipe',
540+
shell: true,
537541
});
538542

539543
const stdoutOutput = result.stdout ? result.stdout.toString() : '';
@@ -609,6 +613,7 @@ describe('dts when composite: true', () => {
609613
cwd: fixturePath,
610614
// do not show output in test console
611615
stdio: 'ignore',
616+
shell: true,
612617
});
613618

614619
expect(result.status).toBe(0);

0 commit comments

Comments
 (0)