Skip to content

Commit

Permalink
use shorthand docker params
Browse files Browse the repository at this point in the history
  • Loading branch information
dianabarsan committed Feb 3, 2024
1 parent 7ada6bc commit eb8a792
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/integration/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const killSpawnedProcess = (proc) => {
};

const waitForDockerContainerLogs = (...regex) => {
const params = 'logs couchdb --follow --tail=1';
const params = 'logs couchdb -f -n=1';
const proc = spawn(
'docker-compose',
params.split(' '),
Expand Down Expand Up @@ -63,7 +63,7 @@ const waitForDockerContainerLogs = (...regex) => {
};

const getDockerContainerLogs = (...regex) => {
const params = 'logs couchdb --follow --tail=1';
const params = 'logs couchdb -f -n=1';
const proc = spawn(
'docker-compose',
params.split(' '),
Expand Down

0 comments on commit eb8a792

Please sign in to comment.