mirror of
https://github.com/OliveTin/OliveTin
synced 2025-12-12 09:05:39 +00:00
12 lines
242 B
Bash
Executable File
12 lines
242 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -o xtrace
|
|
|
|
echo "Running config $1"
|
|
|
|
cp -f ./configs/config.$1.yaml ./configs/config.yaml
|
|
docker start olivetin
|
|
NO_COLOR=1 ./node_modules/.bin/cypress run --headless -s cypress/integration/$1/* || true
|
|
docker kill olivetin
|
|
|