12 lines
76 B
Text
12 lines
76 B
Text
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
npm () {
|
||
|
true
|
||
|
}
|
||
|
|
||
|
export -f npm
|
||
|
|
||
|
./runtests
|