mirror of
https://github.com/swc-project/swc.git
synced 2025-01-06 22:00:45 +03:00
99e738643a
swc_ecma_minifier: - Classify tests so we can focus on MVP.
13 lines
314 B
Bash
Executable File
13 lines
314 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eu
|
|
|
|
cargo test --test compress --all-features ${1-''} \
|
|
| grep 'terser__compress' \
|
|
| grep 'js .\.\. FAILED$' \
|
|
| sed -e 's!test fixture_terser__compress__!!' \
|
|
| sed -e 's! ... FAILED!!' \
|
|
| sed -e 's!__!/!g' \
|
|
| sed -e 's!_js!.js!' \
|
|
>> tests/ignored.txt
|
|
|
|
./scripts/sort.sh |