End to end tests
This commit is contained in:
parent
c71e4b4cd0
commit
fed82d1ae8
26 changed files with 1016 additions and 37 deletions
9
faceai/tests/e2e/global-teardown.js
Normal file
9
faceai/tests/e2e/global-teardown.js
Normal 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 });
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue