Skip to content

Commit

Permalink
Pass in some capture options
Browse files Browse the repository at this point in the history
  • Loading branch information
macmv committed Sep 16, 2024
1 parent 723ce86 commit 0012ebb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/commands/eval.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ describe("eval", () => {
"Paginate(Collections())",
]).join(" ");
console.log(`running ${cmd}`);
const { stdout } = await runCommand(cmd);
const { stdout } = await runCommand(cmd, {}, { print: true, stripAnsi: false });
console.log(`got stdout: ${stdout}`);
expect(JSON.parse(stdout).data[0].targetDb).to.equal("root");
console.log("test is done!");
Expand Down

0 comments on commit 0012ebb

Please sign in to comment.