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 eb8a792 commit 7b4a750
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/integration/utils.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
const fetch = require('node-fetch');
const { spawn } = require('child_process');
const path = require('path');

const baseUrl = 'http://localhost:15984';
const auth = {
Expand All @@ -25,7 +26,7 @@ const waitForDockerContainerLogs = (...regex) => {
params.split(' '),
{
stdio: ['ignore', 'pipe', 'pipe'],
cwd: __dirname
cwd: path.join(process.cwd(), 'test', 'integration'),
}
);
let timeout;
Expand Down

0 comments on commit 7b4a750

Please sign in to comment.