File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -8,9 +8,11 @@ import {
88 type MongoClient ,
99 MongoServerError ,
1010 ObjectId ,
11- ReturnDocument
11+ ReturnDocument ,
12+ runNodelessTests
1213} from '../../mongodb' ;
1314import { assert as test , filterForCommands } from '../shared' ;
15+ import { platform } from 'os' ;
1416
1517describe ( '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 ( { } ) ;
You can’t perform that action at this time.
0 commit comments