@@ -9,7 +9,7 @@ import * as sinon from 'sinon';
99
1010import { type Db , GridFSBucket , MongoAPIError , type MongoClient , ObjectId } from '../../../src' ;
1111
12- describe . only ( 'GridFS Stream' , function ( ) {
12+ describe ( 'GridFS Stream' , function ( ) {
1313 let client : MongoClient ;
1414 let db : Db ;
1515
@@ -25,9 +25,6 @@ describe.only('GridFS Stream', function () {
2525
2626 /**
2727 * Correctly stream a file from disk into GridFS using openUploadStream
28- *
29- * @example -class GridFSBucket
30- * @example -method openUploadStream
3128 */
3229 it ( 'should upload from file stream' , {
3330 metadata : { requires : { topology : [ 'single' ] } } ,
@@ -86,9 +83,6 @@ describe.only('GridFS Stream', function () {
8683
8784 /**
8885 * Correctly upload a file to GridFS and then retrieve it as a stream
89- *
90- * @example -class GridFSBucket
91- * @example -method openDownloadStream
9286 */
9387 it ( 'should download to upload stream' , {
9488 metadata : { requires : { topology : [ 'single' ] } } ,
@@ -143,9 +137,6 @@ describe.only('GridFS Stream', function () {
143137
144138 /**
145139 * Correctly download a GridFS file by name
146- *
147- * @example -class GridFSBucket
148- * @example -method openDownloadStreamByName
149140 */
150141 it ( 'openDownloadStreamByName' , {
151142 metadata : { requires : { topology : [ 'single' ] } } ,
@@ -165,9 +156,6 @@ describe.only('GridFS Stream', function () {
165156
166157 /**
167158 * Provide start and end parameters for file download to skip ahead x bytes and limit the total amount of bytes read to n
168- *
169- * @example -class GridFSBucket
170- * @example -method openDownloadStream
171159 */
172160 it ( 'start/end options for openDownloadStream' , {
173161 metadata : { requires : { topology : [ 'single' ] } } ,
@@ -224,9 +212,6 @@ describe.only('GridFS Stream', function () {
224212
225213 /**
226214 * Deleting a file from GridFS
227- *
228- * @example -class GridFSBucket
229- * @example -method delete
230215 */
231216 it ( 'Deleting a file' , {
232217 metadata : { requires : { topology : [ 'single' ] } } ,
@@ -331,9 +316,6 @@ describe.only('GridFS Stream', function () {
331316
332317 /*
333318 * Find all associates files with a bucket
334- *
335- * @example -class GridFSBucket
336- * @example -method find
337319 */
338320 it ( 'find example' , {
339321 metadata : { requires : { topology : [ 'single' ] } } ,
@@ -353,9 +335,6 @@ describe.only('GridFS Stream', function () {
353335
354336 /**
355337 * Rename a file
356- *
357- * @example -class GridFSBucket
358- * @example -method rename
359338 */
360339 it ( 'rename example' , {
361340 metadata : { requires : { topology : [ 'single' ] } } ,
0 commit comments