Skip to content

Commit 54c59df

Browse files
committed
chore: fixes
1 parent 8be80da commit 54c59df

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/integration/client-side-encryption/client_side_encryption.prose.25.lookup.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ const newEncryptedClient = ({ configuration }: { configuration: TestConfiguratio
4242
}
4343
);
4444

45-
describe.only('$lookup support', function () {
45+
describe('$lookup support', function () {
4646
before(async function () {
4747
let client: MongoClient, encryptedClient: MongoClient;
4848
try {
@@ -155,7 +155,6 @@ describe.only('$lookup support', function () {
155155
let client: MongoClient;
156156

157157
beforeEach(async function () {
158-
Error.stackTraceLimit = 0;
159158
client = newEncryptedClient(this);
160159
});
161160

@@ -354,6 +353,7 @@ describe.only('$lookup support', function () {
354353
const MongoCrypt = getMongoCrypt.wrappedMethod.call(this);
355354
return class extends MongoCrypt {
356355
constructor(options: MongoCryptOptions) {
356+
expect(options).to.have.property('enableMultipleCollinfo', true); // assert invariant
357357
//@ts-expect-error: not yet in the defs
358358
options.enableMultipleCollinfo = false;
359359
super(options);

0 commit comments

Comments
 (0)