mirror of https://github.com/Chocobozzz/PeerTube
				
				
				
			
		
			
				
	
	
		
			15 lines
		
	
	
		
			341 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
			
		
		
	
	
			15 lines
		
	
	
		
			341 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
#!/bin/sh
 | 
						|
 | 
						|
set -eu
 | 
						|
 | 
						|
npm run clean:server:test
 | 
						|
 | 
						|
(
 | 
						|
    cd client
 | 
						|
    npm run webpack -- --config webpack/webpack.video-embed.js --mode development
 | 
						|
)
 | 
						|
 | 
						|
npm run concurrently -- -k -s first \
 | 
						|
    "cd client && npm run ng -- e2e --port 3333" \
 | 
						|
    "NODE_ENV=test NODE_APP_INSTANCE=1 NODE_CONFIG='{ \"log\": { \"level\": \"warning\" } }' npm start"
 |