mirror of
https://github.com/vector-im/hydrogen-web.git
synced 2024-11-20 03:25:52 +01:00
097d2296e0
- Stop any running containers - Start dev server from playwright so that we don't keep spawning new node instances
20 lines
463 B
Bash
Executable File
20 lines
463 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Make sure docker is available
|
|
if ! docker info > /dev/null 2>&1; then
|
|
echo "You need to intall docker before you can run the tests!"
|
|
exit 1
|
|
fi
|
|
|
|
# Stop running containers
|
|
if docker stop hydrogen-synapse > /dev/null 2>&1; then
|
|
echo "Existing 'hydrogen-synapse' container stopped ✔"
|
|
fi
|
|
|
|
if docker stop hydrogen-dex > /dev/null 2>&1; then
|
|
echo "Existing 'hydrogen-dex' container stopped ✔"
|
|
fi
|
|
|
|
# Run playwright
|
|
yarn playwright test
|