Skip to content

Commit b235938

Browse files
committed
Fix setup/teardown
1 parent 3b5f007 commit b235938

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/cli-v3/e2e/index.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ logger.loggerLevel = options.logLevel;
4949

5050
if (testCases.length > 0) {
5151
describe.concurrent("bundling", async () => {
52-
beforeEach<E2EFixtureTest>(async ({ dir, packageManager }) => {
53-
await rimraf(join(dir, "**/node_modules"), {
52+
beforeEach<E2EFixtureTest>(async ({ dir, packageManager, skip }) => {
53+
await rimraf(join(dir, "**/node_modules/**"), {
5454
glob: true,
5555
});
5656
await rimraf(join(dir, ".yarn"), { glob: true });

0 commit comments

Comments
 (0)