mirror of
https://github.com/jambonz/sbc-outbound.git
synced 2025-12-19 04:27:45 +00:00
major merge of features from the hosted branch that was created temporarily during the initial launch of jambonz.org
14 lines
367 B
JavaScript
14 lines
367 B
JavaScript
const test = require('tape');
|
|
//const test = require('tape').test ;
|
|
const exec = require('child_process').exec ;
|
|
|
|
test('stopping docker network..', (t) => {
|
|
t.timeoutAfter(10000);
|
|
exec(`docker-compose -f ${__dirname}/docker-compose-testbed.yaml down`, (err, stdout, stderr) => {
|
|
//console.log(`stderr: ${stderr}`);
|
|
process.exit(0);
|
|
});
|
|
t.end() ;
|
|
});
|
|
|