mirror of
https://github.com/jambonz/sbc-inbound.git
synced 2025-12-19 04:37:43 +00:00
major merge of features from the hosted branch that was created temporarily during the initial launch of jambonz.org
13 lines
288 B
JavaScript
13 lines
288 B
JavaScript
const test = require('tape').test ;
|
|
const exec = require('child_process').exec ;
|
|
|
|
test('starting docker network..', (t) => {
|
|
exec(`docker-compose -f ${__dirname}/docker-compose-testbed.yaml up -d`, (err, stdout, stderr) => {
|
|
t.pass('docker is up');
|
|
t.end(err);
|
|
});
|
|
|
|
});
|
|
|
|
|