strapi/scripts/test.sh

25 lines
520 B
Bash
Raw Normal View History

#!/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`
cd packages/strapi-admin
npm run test
2017-07-24 22:45:12 +02:00
2017-08-09 22:21:49 +02:00
# Test `strapi-plugin-content-manager`
cd ../strapi-plugin-content-manager
npm run test
2017-07-24 22:45:12 +02:00
# Test `strapi-plugin-settings-manager`
2017-08-09 22:09:41 +02:00
cd ../strapi-plugin-settings-manager
2017-07-24 22:45:12 +02:00
npm run test
# Test `strapi-plugin-content-type-builder`
cd ../strapi-plugin-content-type-builder
npm run test