Skip to content

Commit

Permalink
test: fix specs
Browse files Browse the repository at this point in the history
  • Loading branch information
darlanalves authored Apr 16, 2024
1 parent 8938579 commit a646b31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ describe('running containers', () => {

const output = dx.logs({ name: 'test', lines: '100' });

await expect(output).resolves.toEqual('Running...\nOps!');
await expect(output).resolves.toEqual('Running...\n\nOps!');
expect(execMocks.exec).toHaveBeenCalledWith('docker', ['logs', 'test', '-n', '100']);
});
});
Expand Down

0 comments on commit a646b31

Please sign in to comment.