@@ -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 stream a file from disk into GridFS using openUploadStreamWithId
89- *
90- * @example -class GridFSBucket
91- * @example -method openUploadStreamWithId
9286 */
9387 it ( 'should upload from file stream with custom id' , {
9488 metadata : { requires : { topology : [ 'single' ] } } ,
@@ -131,9 +125,6 @@ describe.only('GridFS Stream', function () {
131125
132126 /**
133127 * Correctly upload a file to GridFS and then retrieve it as a stream
134- *
135- * @example -class GridFSBucket
136- * @example -method openDownloadStream
137128 */
138129 it ( 'should download to upload stream' , {
139130 metadata : { requires : { topology : [ 'single' ] } } ,
@@ -188,9 +179,6 @@ describe.only('GridFS Stream', function () {
188179
189180 /**
190181 * Correctly download a GridFS file by name
191- *
192- * @example -class GridFSBucket
193- * @example -method openDownloadStreamByName
194182 */
195183 it ( 'openDownloadStreamByName' , {
196184 metadata : { requires : { topology : [ 'single' ] } } ,
@@ -210,9 +198,6 @@ describe.only('GridFS Stream', function () {
210198
211199 /**
212200 * Provide start and end parameters for file download to skip ahead x bytes and limit the total amount of bytes read to n
213- *
214- * @example -class GridFSBucket
215- * @example -method openDownloadStream
216201 */
217202 it ( 'start/end options for openDownloadStream' , {
218203 metadata : { requires : { topology : [ 'single' ] } } ,
@@ -269,9 +254,6 @@ describe.only('GridFS Stream', function () {
269254
270255 /**
271256 * Deleting a file from GridFS
272- *
273- * @example -class GridFSBucket
274- * @example -method delete
275257 */
276258 it ( 'Deleting a file' , {
277259 metadata : { requires : { topology : [ 'single' ] } } ,
@@ -376,9 +358,6 @@ describe.only('GridFS Stream', function () {
376358
377359 /*
378360 * Find all associates files with a bucket
379- *
380- * @example -class GridFSBucket
381- * @example -method find
382361 */
383362 it ( 'find example' , {
384363 metadata : { requires : { topology : [ 'single' ] } } ,
@@ -398,9 +377,6 @@ describe.only('GridFS Stream', function () {
398377
399378 /**
400379 * Rename a file
401- *
402- * @example -class GridFSBucket
403- * @example -method rename
404380 */
405381 it ( 'rename example' , {
406382 metadata : { requires : { topology : [ 'single' ] } } ,
0 commit comments