1
0

global-teardown.js 248 B

123456789
  1. const { execSync } = require('node:child_process');
  2. const COMPOSE_FILE = 'tests/docker-compose-playwright.yml';
  3. module.exports = async () => {
  4. execSync(`docker compose -f ${COMPOSE_FILE} down --remove-orphans`, {
  5. stdio: 'inherit',
  6. });
  7. };