mirror of
https://github.com/owncast/owncast.git
synced 2024-11-24 13:50:06 +03:00
04b1b30b7d
* fix(test): remove done callback in tests * fix(test): expect correct status code * fix(test): remove logging of var
19 lines
228 B
Bash
Executable file
19 lines
228 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
source ../tools.sh
|
|
|
|
# Install the node test framework
|
|
npm install --quiet --no-progress
|
|
|
|
install_ffmpeg
|
|
|
|
start_owncast
|
|
|
|
start_stream
|
|
|
|
sleep 10
|
|
|
|
# Run tests against a fresh install with no settings.
|
|
npm test
|