2016-03-29 12:02:06 +02:00
|
|
|
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
|
|
|
|
if [ -z "$TEST_GREP" ]; then
|
|
|
|
TEST_GREP=""
|
|
|
|
fi
|
|
|
|
|
2017-06-15 13:33:14 +02:00
|
|
|
node node_modules/mocha/bin/_mocha `scripts/_get-test-directories.sh` --opts test/mocha.opts --grep "$TEST_GREP"
|
2017-07-24 22:45:12 +02:00
|
|
|
|
|
|
|
# Test `strapi-admin`
|
2017-05-11 17:30:00 +02:00
|
|
|
cd packages/strapi-admin
|
2016-12-05 17:52:51 +01:00
|
|
|
npm install
|
2016-11-25 15:37:50 +01:00
|
|
|
npm run test
|
2017-07-24 22:45:12 +02:00
|
|
|
cd ../..
|
|
|
|
|
|
|
|
# Test `strapi-plugin-settings-manager`
|
|
|
|
cd packages/strapi-plugin-settings-manager
|
|
|
|
npm install
|
|
|
|
npm run test
|