mirror of
				https://github.com/strapi/strapi.git
				synced 2025-11-04 11:54:10 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
		
			616 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			616 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
 | 
						|
 | 
						|
# Test `strapi-plugin-content-type-builder`
 | 
						|
cd ../strapi-plugin-users-permissions
 | 
						|
npm run test
 |