Skip to content

Commit

Permalink
fix(NODE-3150): added bsonRegExp option
Browse files Browse the repository at this point in the history
  • Loading branch information
andymina committed Jun 14, 2021
1 parent d36e73c commit 9d55e09
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/unit/bson_regex.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const { BSONRegExp } = require('../../src/index');

describe('BSONRegExp', () => {
describe('bsonRegExp option', () => {
it('should respond with BSONRegExp class with flag passed to db', async function () {
it('should respond with BSONRegExp class with option passed to db', async function () {
let client;
try {
// create and connect to client
Expand All @@ -24,7 +24,7 @@ describe('BSONRegExp', () => {
}
});

it('should respond with BSONRegExp class with flag passed to collection', async function () {
it('should respond with BSONRegExp class with option passed to collection', async function () {
let client;
try {
// create and connect to client
Expand All @@ -43,7 +43,7 @@ describe('BSONRegExp', () => {
}
});

it('should respond with BSONRegExp class with flag passed to operation', async function () {
it('should respond with BSONRegExp class with option passed to operation', async function () {
let client;
try {
// create and connect to client
Expand Down

0 comments on commit 9d55e09

Please sign in to comment.