Skip to content

fix: use WsAdapter in e2e tests to match main.ts setup #9

fix: use WsAdapter in e2e tests to match main.ts setup

fix: use WsAdapter in e2e tests to match main.ts setup #9

Workflow file for this run

name: Test Suite
on:
pull_request:
push:
jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20"
cache: "yarn"
- run: yarn install --frozen-lockfile
- run: npx jest --no-cache --coverage
- uses: actions/upload-artifact@v4
if: always()
with:
name: coverage
path: coverage/
e2e-tests:
runs-on: ubuntu-latest
needs: [unit-tests]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20"
cache: "yarn"
- run: yarn install --frozen-lockfile
- run: npx jest --config test/jest-e2e.json --no-cache