Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions apps/wallets/quickstart-devkit/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,8 @@ dotenv.config({ path: path.resolve(__dirname, ".env") });

export default defineConfig({
testDir: "./e2e",
fullyParallel: true,
forbidOnly: !!process.env.CI,
retries: 0,
retries: 2,
workers: 1,
maxFailures: undefined, // Don't stop after a certain number of failures - run all tests
reporter: process.env.CI ? [["json", { outputFile: "test-results/playwright-results.json" }], ["list"]] : "html",
Expand Down
Loading