2017-03-07 23:43:56 +03:00
|
|
|
#!/bin/sh
|
2014-04-19 06:05:47 +04:00
|
|
|
|
2017-03-07 23:43:56 +03:00
|
|
|
set -eu
|
2016-07-07 04:38:07 +03:00
|
|
|
|
2016-06-27 22:24:10 +03:00
|
|
|
glob=$*
|
2017-03-07 23:43:56 +03:00
|
|
|
if [ -z "$glob" ]; then
|
2017-03-15 21:14:50 +03:00
|
|
|
glob="--recursive test/local test/remote"
|
2016-06-27 22:24:10 +03:00
|
|
|
fi
|
|
|
|
|
2014-04-19 06:05:47 +04:00
|
|
|
./scripts/gen_keys.js
|
2016-10-10 04:40:45 +03:00
|
|
|
./scripts/gen_vapid_keys.js
|
2016-11-08 23:04:46 +03:00
|
|
|
./scripts/mocha-coverage.js -R dot $glob
|
2016-06-27 22:24:10 +03:00
|
|
|
grunt eslint copyright
|