Skip to content

Commit 289220f

Browse files
authored
test: add retry=4 to aggregate e2e test run (#6638)
1 parent 1532651 commit 289220f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ test-integration: build-s3-browser-bundle
2828
make test-protocols;
2929

3030
test-e2e: build-s3-browser-bundle
31-
npx vitest run -c vitest.config.e2e.ts
32-
npx vitest run -c vitest.config.browser.e2e.ts
31+
npx vitest run -c vitest.config.e2e.ts --retry=4
32+
npx vitest run -c vitest.config.browser.e2e.ts --retry=4
3333

3434
build-s3-browser-bundle:
3535
node ./clients/client-s3/test/browser-build/esbuild

vitest.config.browser.e2e.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { defineConfig } from "vitest/config";
22

33
export default defineConfig({
44
test: {
5-
exclude: ["**/*/node_modules/**/*.spec.ts"],
5+
exclude: ["**/*/node_modules/**/*.spec.ts", "node_modules"],
66
include: ["**/*.browser.e2e.spec.ts"],
77
environment: "happy-dom",
88
},

0 commit comments

Comments
 (0)