Skip to content

Commit 6f03b25

Browse files
committed
test: setup run test with tonkeeper
1 parent 6af5960 commit 6f03b25

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.github/workflows/test.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ jobs:
1212
test:
1313
runs-on: ubuntu-22.04
1414
steps:
15+
- name: Install linux dependencies
16+
run: |
17+
sudo apt-get install --no-install-recommends -y \
18+
xvfb
1519
- uses: actions/checkout@v4
1620
- uses: pnpm/action-setup@v4
1721
with:
@@ -25,6 +29,9 @@ jobs:
2529
- run: pnpm lint
2630
- run: npx playwright install --with-deps
2731
- run: pnpm test
32+
- run: xvfb-run pnpm tonkeeper
33+
env:
34+
WALLET_MNEMONIC: ${{ secrets.WALLET_MNEMONIC }}
2835
- uses: actions/upload-artifact@v4
2936
if: always()
3037
with:

playwright-test.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export default defineConfig({
99
testDir: './test',
1010

1111
/* Maximum time one test can run for */
12-
// timeout: 30_000,
12+
timeout: 60_000,
1313

1414
expect: {
1515
/**

0 commit comments

Comments
 (0)