mirror of
https://github.com/swc-project/swc.git
synced 2024-12-01 01:13:56 +03:00
10 lines
177 B
Bash
10 lines
177 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -eu
|
||
|
|
||
|
cargo test --lib --all-features
|
||
|
|
||
|
TEST="$(echo "$1" |sed 's/\:\:/\//g' | sed 's/_/-/g')"
|
||
|
export TEST;
|
||
|
|
||
|
cargo test --test fixture pass -- --nocapture
|