2021-10-07 07:03:48 +03:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2023-01-11 05:50:32 +03:00
|
|
|
source ../tools.sh
|
2023-01-05 01:22:55 +03:00
|
|
|
|
2021-10-07 07:03:48 +03:00
|
|
|
# Install the node test framework
|
2024-08-22 00:44:09 +03:00
|
|
|
npm install --quiet --no-progress
|
2021-10-07 07:03:48 +03:00
|
|
|
|
2023-01-12 07:11:13 +03:00
|
|
|
install_ffmpeg
|
2023-01-11 05:50:32 +03:00
|
|
|
|
2023-01-12 07:11:13 +03:00
|
|
|
start_owncast
|
2023-01-11 05:50:32 +03:00
|
|
|
|
2023-01-12 07:11:13 +03:00
|
|
|
start_stream
|
2021-10-07 07:03:48 +03:00
|
|
|
|
2023-01-23 08:07:49 +03:00
|
|
|
sleep 10
|
|
|
|
|
2021-10-07 07:03:48 +03:00
|
|
|
# Run tests against a fresh install with no settings.
|
|
|
|
npm test
|