From c9abc11ffc4513e9ecbf71d81190fcc05638b333 Mon Sep 17 00:00:00 2001 From: Alexander Zeitler Date: Sat, 10 Apr 2021 17:19:07 +0200 Subject: [PATCH] chore(style): remove dead / commented code --- test/index.test.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/index.test.ts b/test/index.test.ts index 12cde9f..820fe86 100644 --- a/test/index.test.ts +++ b/test/index.test.ts @@ -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); - // expect(std.err).toBeFalsy(); checkOSID(std.out, 'debian'); std = await compose.run('proxy', [ '/bin/sh', '-c', 'cat /etc/os-release' ], opts); - // expect(std.err).toBeFalsy(); checkOSID(std.out, 'alpine'); await compose.down({ cwd: path.join(__dirname), log: logOutput });