mirror of
https://github.com/jambonz/jambonz-api-server.git
synced 2025-12-19 05:47:46 +00:00
major merge of features from the hosted branch that was created temporarily during the initial launch of jambonz.org
12 lines
314 B
JavaScript
12 lines
314 B
JavaScript
const test = require('tape');
|
|
const exec = require('child_process').exec ;
|
|
|
|
test('starting docker network..', (t) => {
|
|
t.plan(1);
|
|
exec(`docker-compose -f ${__dirname}/docker-compose-testbed.yaml up -d`, (err, stdout, stderr) => {
|
|
setTimeout(() => {
|
|
t.pass('docker started');
|
|
}, 15000);
|
|
});
|
|
});
|