Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
0xSero committed Jun 24, 2024
1 parent d9b0332 commit c10a1ff
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions packages/cache/src/cli/cliEntrypoint.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import os from 'node:os'
import path from 'node:path'
import { WALLET_SETUP_DIR_NAME } from '../constants'
import { prepareExtension } from '../prepareExtension'
import chalk from 'chalk'
import { Command } from 'commander'
import { rimraf } from 'rimraf'
import { WALLET_SETUP_DIR_NAME } from '../constants'
import { createCache } from '../createCache'
import { prepareExtension } from '../prepareExtension'
import { compileWalletSetupFunctions } from './compileWalletSetupFunctions'
import { footer } from './footer'

Expand Down
2 changes: 1 addition & 1 deletion packages/cache/src/cli/compileWalletSetupFunctions.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import path from 'node:path'
import { ensureCacheDirExists } from '../ensureCacheDirExists'
import { glob } from 'glob'
import { build } from 'tsup'
import { ensureCacheDirExists } from '../ensureCacheDirExists'
import { FIXES_BANNER } from './compilationFixes'

const OUT_DIR_NAME = 'wallet-setup-dist'
Expand Down
2 changes: 1 addition & 1 deletion packages/cache/test/defineWalletSetup.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { defineWalletSetup } from "../src"
import { describe, expect, it } from 'vitest'
import { defineWalletSetup } from '../src'

const PASSWORD = 'Quack Quack! 🦆'
const EXPECTED_HASH = 'f9c5ea5bb2c3aac96ff4'
Expand Down
2 changes: 1 addition & 1 deletion release/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { defineWalletSetup } from '@synthetixio/synpress-cache'
import { testWithSynpress } from '@synthetixio/synpress-core'
import { MetaMask, getExtensionId, metaMaskFixtures } from '@synthetixio/synpress-metamask'
import { defineWalletSetup } from '@synthetixio/synpress-cache'

export {
// Framework fixtures
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { Page } from '@playwright/test'
import { getNotificationPageAndWaitForLoad } from '../../../getNotificationPageAndWaitForLoad'
import { getExtensionId } from '../../../fixtureActions'
import { getNotificationPageAndWaitForLoad } from '../../../getNotificationPageAndWaitForLoad'
import { notificationPageElements } from '../selectors'

export const acceptAccess = async (page: Page) => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { Page } from '@playwright/test'
import { getNotificationPageAndWaitForLoad } from '../../../getNotificationPageAndWaitForLoad'
import { getExtensionId } from '../../../fixtureActions'
import { getNotificationPageAndWaitForLoad } from '../../../getNotificationPageAndWaitForLoad'

export const rejectAccess = async (page: Page) => {
const extensionId = await getExtensionId(page.context(), 'keplr')
Expand Down

0 comments on commit c10a1ff

Please sign in to comment.