Skip to content

refactor: migrate e2e:cluster to vitest #294

refactor: migrate e2e:cluster to vitest

refactor: migrate e2e:cluster to vitest #294

Workflow file for this run

name: WHIP Endpoint Conformance Tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 18
- name: Install npm dependencies
run: npm ci
- name: Build WebUI
run: npm run build
- name: Build
run: cargo build --release --verbose
- name: Checkout tools repo
uses: actions/checkout@v4
with:
repository: wish-wg/resources
path: wish-tools
- name: Run WHIP Endpoint Conformance Tests
run: |
pushd wish-tools/conformance-tools/whip/server/
wget https://gist.github.com/a-wing/f7b074770b558e114911e339bb6a3e84/raw/9529d71fb8abe16fe4900a0232c77b2621c8d318/multirun.sh
chmod +x multirun.sh
npm install
export WHIP_ENDPOINT=http://127.0.0.1:7777/whip/777
./multirun.sh '../../../../target/release/live777' 'npm run test' 'sleep 10'