story-kit: start 65_story_standardised_script_test_entry_point_for_all_projects
This commit is contained in:
15
script/test
Executable file
15
script/test
Executable file
@@ -0,0 +1,15 @@
|
||||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
|
||||
PROJECT_ROOT="$(cd "$SCRIPT_DIR/.." && pwd)"
|
||||
|
||||
echo "=== Running Rust tests ==="
|
||||
cargo test --manifest-path "$PROJECT_ROOT/Cargo.toml"
|
||||
|
||||
echo "=== Running frontend unit tests ==="
|
||||
cd "$PROJECT_ROOT/frontend"
|
||||
pnpm test
|
||||
|
||||
echo "=== Running e2e tests ==="
|
||||
pnpm test:e2e
|
||||
Reference in New Issue
Block a user