Skip to content

Commit

Permalink
remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
ddelgrosso1 committed Nov 10, 2023
1 parent 3da69c4 commit ff7182d
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions system-test/deno/storage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,17 +90,14 @@ describe('Storage', () => {

beforeAll(async () => {
const pullCmd = new Deno.Command('docker', {args: PULL_ARGS});
const a = await pullCmd.output();
await pullCmd.output();
const runCmd = new Deno.Command('docker', {args: RUN_ARGS});
const b = await runCmd.output();
console.log(new TextDecoder().decode(a.stdout));
console.log(new TextDecoder().decode(b.stdout));
await runCmd.output();
});

afterAll(async () => {
const stopCmd = new Deno.Command('docker', {args: STOP_ARGS});
const a = await stopCmd.output();
console.log(new TextDecoder().decode(a.stdout));
await stopCmd.output();
});

describe('bucket', () => {
Expand Down

0 comments on commit ff7182d

Please sign in to comment.