mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2024-12-01 12:59:15 -06:00
8 lines
160 B
Bash
Executable File
8 lines
160 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eu
|
|
|
|
NODE_ENV=test npm run concurrently -- -k \
|
|
"sh scripts/dev/client.sh --skip-server ${1:-}" \
|
|
"sh scripts/dev/server.sh --skip-client"
|