Skip to content

Commit

Permalink
fix: cache dir
Browse files Browse the repository at this point in the history
  • Loading branch information
matstyler committed Mar 11, 2024
1 parent e93a773 commit 8455a7a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions wallets/metamask/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
],
"scripts": {
"build": "pnpm run clean && pnpm run build:dist && pnpm run build:types",
"build:cache": "synpress-core test/e2e/wallet-setup",
"build:cache:headless": "synpress-core test/e2e/wallet-setup --headless",
"build:cache:headless:force": "synpress-core test/e2e/wallet-setup --headless --force",
"build:cache": "synpress-core test/e2e/playwright/wallet-setup",
"build:cache:headless": "synpress-core test/e2e/playwright/wallet-setup --headless",
"build:cache:headless:force": "synpress-core test/e2e/playwright/wallet-setup --headless --force",
"build:dist": "tsup --tsconfig tsconfig.build.json",
"build:types": "tsc --emitDeclarationOnly --project tsconfig.build.json",
"clean": "rimraf dist types",
Expand Down
2 changes: 1 addition & 1 deletion wallets/metamask/src/support/commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@
// visit(originalFn: CommandOriginalFn, url: string, options: Partial<VisitOptions>): Chainable<Element>
// }
// }
// }
// }
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { defineWalletSetup } from '@synthetixio/synpress-core'
import { MetaMask } from '../../../../src'

import { SEED_PHRASE, PASSWORD } from '../../../../src/constants'
import { PASSWORD, SEED_PHRASE } from '../../../../src/constants'

export default defineWalletSetup(PASSWORD, async (context, walletPage) => {
const metamask = new MetaMask(context, walletPage, PASSWORD)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { defineWalletSetup } from '@synthetixio/synpress-core'
import { getExtensionId } from '@synthetixio/synpress-fixtures'
import { MetaMask } from '../../../../src'

import { SEED_PHRASE, PASSWORD } from '../../../../src/constants'
import { PASSWORD, SEED_PHRASE } from '../../../../src/constants'

export default defineWalletSetup(PASSWORD, async (context, walletPage) => {
const extensionId = await getExtensionId(context, 'MetaMask')
Expand Down

0 comments on commit 8455a7a

Please sign in to comment.