2020-11-24 11:28:54 +03:00
|
|
|
#!/bin/bash
|
|
|
|
|
2023-01-12 07:11:13 +03:00
|
|
|
set -e
|
2023-01-11 05:50:32 +03:00
|
|
|
|
2023-01-12 07:11:13 +03:00
|
|
|
source ../tools.sh
|
2020-11-24 11:28:54 +03:00
|
|
|
|
|
|
|
# Install the node test framework
|
2022-11-30 02:49:08 +03:00
|
|
|
npm install --quiet --no-progress
|
2020-11-24 11:28:54 +03:00
|
|
|
|
2023-01-12 07:11:13 +03:00
|
|
|
install_ffmpeg
|
2020-11-24 11:28:54 +03:00
|
|
|
|
2023-01-12 07:11:13 +03:00
|
|
|
start_owncast
|
2020-11-24 11:28:54 +03:00
|
|
|
|
2023-01-12 07:11:13 +03:00
|
|
|
start_stream
|
2020-11-24 11:28:54 +03:00
|
|
|
|
|
|
|
# Run the tests against the instance.
|
2022-03-07 07:34:49 +03:00
|
|
|
npm test
|