diff --git a/package.json b/package.json index 7505f39a7..640880ce2 100644 --- a/package.json +++ b/package.json @@ -53,7 +53,7 @@ "test:e2e": "NODE_ENV=test pnpm build:crx && playwright test --config=packages/app/playwright.config.ts --project=chromium", "test:e2e:beta": "NODE_ENV=test pnpm build:crx && playwright test --config=packages/app/playwright.config.ts --project=chrome-beta", "test:e2e:crx-lock": "NODE_ENV=test pnpm build:crx && playwright test --config=packages/app/playwright.crx-lock.config.ts", - "test:e2e:assets": "NODE_ENV=test pnpm playwright test --config=packages/app/playwright.assets.testnet.config.ts", + "test:e2e:assets": "NODE_ENV=test pnpm playwright test --config=packages/app/playwright.assets.config.ts", "test:e2e:contracts": "NODE_ENV=test pnpm build:crx && pnpm --filter=@fuel-wallet/e2e-contract-tests test:e2e", "test:appfile": "pnpm --filter=fuels-wallet test --", "ts:check": "turbo run ts:check", diff --git a/packages/app/playwright.assets.testnet.config.ts b/packages/app/playwright.assets.config.ts similarity index 86% rename from packages/app/playwright.assets.testnet.config.ts rename to packages/app/playwright.assets.config.ts index f48e9542f..2d746e63b 100644 --- a/packages/app/playwright.assets.testnet.config.ts +++ b/packages/app/playwright.assets.config.ts @@ -4,7 +4,7 @@ import './load.envs.cts'; export default defineConfig({ ...playwrightConfig, - testMatch: 'playwright/crx/assets.testnet.test.ts', + testMatch: 'playwright/crx/assets.test.ts', testIgnore: undefined, projects: [ { diff --git a/packages/app/playwright.config.ts b/packages/app/playwright.config.ts index 77a925b42..556729c4c 100644 --- a/packages/app/playwright.config.ts +++ b/packages/app/playwright.config.ts @@ -49,10 +49,7 @@ export const playwrightConfig: PlaywrightTestConfig = { }, }, ], - testIgnore: [ - 'playwright/crx/lock.test.ts', - 'playwright/crx/assets.testnet.test.ts', - ], + testIgnore: ['playwright/crx/lock.test.ts', 'playwright/crx/assets.test.ts'], }; export default defineConfig(playwrightConfig); diff --git a/packages/app/playwright/crx/assets.testnet.test.ts b/packages/app/playwright/crx/assets.test.ts similarity index 100% rename from packages/app/playwright/crx/assets.testnet.test.ts rename to packages/app/playwright/crx/assets.test.ts