End to end tests
All checks were successful
Publish FaceAI Container / publish (push) Successful in 2m42s

This commit is contained in:
MaddoScientisto 2026-04-12 19:31:12 +02:00
commit 2218c9a84c
26 changed files with 1016 additions and 37 deletions

View file

@ -0,0 +1,9 @@
const { dockerCompose } = require('./faceai-test-utils');
module.exports = async () => {
if (process.env.FACEAI_E2E_KEEP_STACK === '1') {
return;
}
await dockerCompose(['down', '-v', '--remove-orphans'], { allowFailure: true });
};