mirror of
https://github.com/librespeed/speedtest.git
synced 2026-07-10 02:32:06 +00:00
* docs(test): add playwright modes test plan * test(e2e): add playwright phase-1 mode coverage * test(e2e): add classic standalone no-server regression * ci(docker): gate image build on playwright e2e * ci(e2e): run on master push and allow manual dispatch --------- Co-authored-by: Stefan Stidl <stefan.stidl@ffg.at>
9 lines
248 B
JavaScript
9 lines
248 B
JavaScript
const { execSync } = require('node:child_process');
|
|
|
|
const COMPOSE_FILE = 'tests/docker-compose-playwright.yml';
|
|
|
|
module.exports = async () => {
|
|
execSync(`docker compose -f ${COMPOSE_FILE} down --remove-orphans`, {
|
|
stdio: 'inherit',
|
|
});
|
|
};
|