9 lines
243 B
JavaScript
9 lines
243 B
JavaScript
|
|
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 });
|
||
|
|
};
|