mirror of
https://github.com/owncast/owncast.git
synced 2024-11-25 22:31:09 +03:00
19 lines
226 B
Bash
Executable file
19 lines
226 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
source ../tools.sh
|
|
|
|
# Install the node test framework
|
|
npm install --silent >/dev/null
|
|
|
|
install_ffmpeg
|
|
|
|
start_owncast
|
|
|
|
start_stream
|
|
|
|
sleep 10
|
|
|
|
# Run tests against a fresh install with no settings.
|
|
npm test
|