We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e41eb7 commit d7688e4Copy full SHA for d7688e4
packages/cli-repl/src/cli-repl.spec.ts
@@ -2651,9 +2651,9 @@ describe('CliRepl', function () {
2651
await tabCompletion();
2652
2653
if (wantQueryOperators) {
2654
- expect(output).to.include('db.movies.find({year: {$gte');
+ expect(output, output).to.include('db.movies.find({year: {$gte');
2655
} else {
2656
- expect(output).to.not.include('db.movies.find({year: {$gte');
+ expect(output, output).to.not.include('db.movies.find({year: {$gte');
2657
}
2658
});
2659
0 commit comments