Skip to content

Commit 738dedb

Browse files
committed
ci: skip failing Windows test
1 parent f36b754 commit 738dedb

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

test/integration/crud/find.test.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,11 @@ import {
88
type MongoClient,
99
MongoServerError,
1010
ObjectId,
11-
ReturnDocument
11+
ReturnDocument,
12+
runNodelessTests
1213
} from '../../mongodb';
1314
import { assert as test, filterForCommands } from '../shared';
15+
import { platform } from 'os';
1416

1517
describe('Find', function () {
1618
let client: MongoClient;
@@ -1078,6 +1080,11 @@ describe('Find', function () {
10781080
'regression test (NODE-6878): CursorResponse.emptyGetMore contains all CursorResponse fields',
10791081
{ requires: { topology: 'sharded' } },
10801082
async function () {
1083+
if (platform() === 'win32') {
1084+
// TODO: NODE-7511 - unskip test for NODE-6878 in Windows
1085+
this.skip();
1086+
}
1087+
10811088
const collection = client.db('rewind-regression').collection('bar');
10821089

10831090
await collection.deleteMany({});

0 commit comments

Comments
 (0)