Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,6 @@ src/safari/Web Monetization/Shared \(Extension\)/Resources/*

# playwright
/tests/e2e/test-results/
/tests/e2e/test-results/.auth
/tests/e2e/.auth
/tests/e2e/playwright-report/
/playwright/.cache/
4 changes: 2 additions & 2 deletions tests/e2e/fixtures/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import {
type WorkerInfo,
type Worker,
} from '@playwright/test';
import { format } from 'date-fns';
import { APP_URL } from '@/background/constants';
import { DIST_DIR, ROOT_DIR } from '../../../esbuild/config';
import type { TranslationKeys } from '../../../src/shared/helpers';
Expand All @@ -26,9 +27,8 @@ export const BUILD_DIR = DIST_DIR;
// https://playwright.dev/docs/auth#basic-shared-account-in-all-tests
export const authFile = path.join(
testDir,
'test-results',
'.auth',
'rafiki-money.json',
`testnet-${format(new Date(), 'yyyyII')}.json`,
);

const FIREFOX_ADDON_UUID = crypto.randomUUID();
Expand Down