11 lines
181 B
Bash
Executable File
11 lines
181 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
./scripts/link.sh
|
|
rm -rf tmp
|
|
|
|
if [ -n "$1" ]; then
|
|
jest --maxWorkers=1 ./build/e2e/schematics/$1.test.js
|
|
else
|
|
jest --maxWorkers=1 ./build/e2e/schematics
|
|
fi
|