mirror of
https://github.com/danbulant/docker-compose
synced 2026-06-13 19:51:52 +00:00
fix assert: alpine finishes after start/restart
This commit is contained in:
parent
186e04741d
commit
5ecc699f90
1 changed files with 0 additions and 2 deletions
|
|
@ -251,7 +251,6 @@ test('restartAll does restart all containers', async assert => {
|
|||
await compose.restartAll({ cwd: path.join(__dirname), log: true });
|
||||
|
||||
assert.true(await isContainerRunning('/compose_test_mongodb'));
|
||||
assert.true(await isContainerRunning('/compose_test_alpine'));
|
||||
assert.end();
|
||||
});
|
||||
|
||||
|
|
@ -260,7 +259,6 @@ test('restartMany does restart selected containers', async assert => {
|
|||
await compose.restartMany([ 'db', 'alpine' ], { cwd: path.join(__dirname), log: true });
|
||||
|
||||
assert.true(await isContainerRunning('/compose_test_mongodb'));
|
||||
assert.true(await isContainerRunning('/compose_test_alpine'));
|
||||
assert.end();
|
||||
});
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue