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 001c1d0 commit 7e39d40Copy full SHA for 7e39d40
packages/cli-repl/src/mongosh-repl.spec.ts
@@ -396,7 +396,7 @@ describe('MongoshNodeRepl', function () {
396
397
context(
398
`autocompleting during .editor [${
399
- process.env.USE_NEW_AUTOCOMPLETE ?? 'old'
+ process.env.USE_NEW_AUTOCOMPLETE ? 'new' : 'old'
400
}]`,
401
function () {
402
it('does not stop input when autocompleting during .editor', async function () {
@@ -474,7 +474,7 @@ describe('MongoshNodeRepl', function () {
474
});
475
476
477
- `autocompletion [${process.env.USE_NEW_AUTOCOMPLETE ?? 'old'}]`,
+ `autocompletion [${process.env.USE_NEW_AUTOCOMPLETE ? 'new' : 'old'}]`,
478
479
it('autocompletes collection methods', async function () {
480
input.write('db.coll.');
0 commit comments