Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions test/integration/change-streams/change_stream.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1993,17 +1993,18 @@ describe('Change Streams', function () {
)
.run();

describe('BSON Options', function () {
describe.only('BSON Options', function () {
let client: MongoClient;
let db: Db;
let collection: Collection;
let cs: ChangeStream;
beforeEach(async function () {
client = await this.configuration.newClient({ monitorCommands: true }).connect();
db = client.db('db');
collection = db.collection('collection');
collection = await db.createCollection('collection');
});
afterEach(async function () {
db.dropCollection('collection');
await cs.close();
await client.close();
client = undefined;
Expand Down