mirror of
https://github.com/danbulant/docker-compose
synced 2026-05-24 12:35:32 +00:00
chore(style): remove dead / commented code
This commit is contained in:
parent
afb2b1116b
commit
c9abc11ffc
1 changed files with 0 additions and 2 deletions
|
|
@ -299,11 +299,9 @@ test('ensure run and exec with command defined as array are working', async ():
|
||||||
|
|
||||||
let std = await compose.exec('web', [ '/bin/sh', '-c', 'cat /etc/os-release' ], opts);
|
let std = await compose.exec('web', [ '/bin/sh', '-c', 'cat /etc/os-release' ], opts);
|
||||||
|
|
||||||
// expect(std.err).toBeFalsy();
|
|
||||||
checkOSID(std.out, 'debian');
|
checkOSID(std.out, 'debian');
|
||||||
|
|
||||||
std = await compose.run('proxy', [ '/bin/sh', '-c', 'cat /etc/os-release' ], opts);
|
std = await compose.run('proxy', [ '/bin/sh', '-c', 'cat /etc/os-release' ], opts);
|
||||||
// expect(std.err).toBeFalsy();
|
|
||||||
checkOSID(std.out, 'alpine');
|
checkOSID(std.out, 'alpine');
|
||||||
|
|
||||||
await compose.down({ cwd: path.join(__dirname), log: logOutput });
|
await compose.down({ cwd: path.join(__dirname), log: logOutput });
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue