1
0
Files
kobopatch-webui/test.sh
Nico Verbruggen 6d4bce8e05
All checks were successful
Build and test project / build-and-test (push) Successful in 1m47s
Don't load custom fonts, fix scripts
2026-03-17 13:59:57 +01:00

17 lines
337 B
Bash
Executable File

#!/bin/bash
set -euo pipefail
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
echo "=== Building WASM ==="
"$SCRIPT_DIR/kobopatch-wasm/build.sh"
echo ""
echo "=== Running WASM integration test ==="
"$SCRIPT_DIR/kobopatch-wasm/test-integration.sh"
echo ""
echo "=== Running E2E tests (Playwright) ==="
cd "$SCRIPT_DIR/tests/e2e"
npm test