mirror of
https://github.com/strapi/strapi.git
synced 2025-07-18 06:24:58 +00:00
25 lines
520 B
Bash
Executable File
25 lines
520 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
if [ -z "$TEST_GREP" ]; then
|
|
TEST_GREP=""
|
|
fi
|
|
|
|
node node_modules/mocha/bin/_mocha `scripts/_get-test-directories.sh` --opts test/mocha.opts --grep "$TEST_GREP"
|
|
|
|
# Test `strapi-admin`
|
|
cd packages/strapi-admin
|
|
npm run test
|
|
|
|
# Test `strapi-plugin-content-manager`
|
|
cd ../strapi-plugin-content-manager
|
|
npm run test
|
|
|
|
# Test `strapi-plugin-settings-manager`
|
|
cd ../strapi-plugin-settings-manager
|
|
npm run test
|
|
|
|
# Test `strapi-plugin-content-type-builder`
|
|
cd ../strapi-plugin-content-type-builder
|
|
npm run test
|