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