Skip to content
Draft
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
6 changes: 4 additions & 2 deletions .github/workflows/e2e-naga.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,10 @@ jobs:
privateKey: LIVE_MASTER_ACCOUNT_NAGA_TEST
env:
LOG_LEVEL: debug2
NETWORK: ${{ matrix.network }}
LIVE_MASTER_ACCOUNT: ${{ secrets[matrix.privateKey] }}
LOCAL_MASTER_ACCOUNT: ${{ secrets[matrix.privateKey] }}
LIT_YELLOWSTONE_PRIVATE_RPC_URL: ${{ vars.LIT_YELLOWSTONE_PRIVATE_RPC_URL }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
Expand Down Expand Up @@ -101,8 +103,8 @@ jobs:
echo "LOCAL_MASTER_ACCOUNT is not set for network ${{ matrix.network }}" >&2
exit 1
fi
- name: Run health check (${{ matrix.network }})
run: NETWORK=${{ matrix.network }} pnpm run test:e2e:ci -- packages/e2e/src/e2e.spec.ts --testNamePattern "^all "
- name: Run e2e tests (${{ matrix.network }})
run: pnpm run test:e2e:ci -- packages/e2e/src/e2e.spec.ts
timeout-minutes: 10

release:
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -98,4 +98,5 @@ alice-auth-manager-data
alice-auth-manager-data
!/packages/contracts/dist/
!/packages/contracts/dist/dev
.secret
.secret
.jest-cache
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
"lint": "npx nx run-many --target=lint --all",
"lint:fix": "npx nx run-many --target=lint --all -- --fix",
"format:check": "npx nx format:check --all",
"test:e2e": "npx jest --clearCache --config ./jest.e2e.config.ts && LOG_LEVEL=${LOG_LEVEL:-silent} dotenvx run --env-file=.env -- jest --runInBand --detectOpenHandles --forceExit --config ./jest.e2e.config.ts --testTimeout=50000000 --runTestsByPath packages/e2e/src/e2e.spec.ts",
"test:target": "npx jest --clearCache --config ./jest.e2e.config.ts && LOG_LEVEL=${LOG_LEVEL:-silent} dotenvx run --env-file=.env -- jest --runInBand --detectOpenHandles --forceExit --config ./jest.e2e.config.ts --testTimeout=50000000",
"test:e2e:ci": "npx jest --clearCache --config ./jest.e2e.config.ts && LOG_LEVEL=${LOG_LEVEL:-silent} npx jest --runInBand --detectOpenHandles --forceExit --config ./jest.e2e.config.ts --testTimeout=50000000 --runTestsByPath",
"test:e2e": "npx jest --clearCache --config ./jest.e2e.config.ts && LOG_LEVEL=${LOG_LEVEL:-silent} dotenvx run --env-file=.env -- jest --runInBand --detectOpenHandles --forceExit --config ./jest.e2e.config.ts --testTimeout=50000000 --cacheDirectory .jest-cache --runTestsByPath packages/e2e/src/e2e.spec.ts",
"test:target": "npx jest --clearCache --config ./jest.e2e.config.ts && LOG_LEVEL=${LOG_LEVEL:-silent} dotenvx run --env-file=.env -- jest --runInBand --detectOpenHandles --forceExit --config ./jest.e2e.config.ts --testTimeout=50000000 --cacheDirectory .jest-cache",
"test:e2e:ci": "npx jest --clearCache --config ./jest.e2e.config.ts && LOG_LEVEL=${LOG_LEVEL:-silent} npx jest --runInBand --detectOpenHandles --forceExit --config ./jest.e2e.config.ts --testTimeout=50000000 --cacheDirectory .jest-cache --runTestsByPath",
"pretest:e2e": "pnpm run generate:lit-actions",
"pretest:e2e:ci": "pnpm run generate:lit-actions",
"pretest:custom": "pnpm run generate:lit-actions",
Expand Down
74 changes: 0 additions & 74 deletions packages/e2e/src/e2e-revamp.spec.ts

This file was deleted.

Loading
Loading