@@ -9,7 +9,7 @@ import * as sinon from 'sinon';
9
9
10
10
import { type Db , GridFSBucket , MongoAPIError , type MongoClient , ObjectId } from '../../../src' ;
11
11
12
- describe . only ( 'GridFS Stream' , function ( ) {
12
+ describe ( 'GridFS Stream' , function ( ) {
13
13
let client : MongoClient ;
14
14
let db : Db ;
15
15
@@ -25,9 +25,6 @@ describe.only('GridFS Stream', function () {
25
25
26
26
/**
27
27
* Correctly stream a file from disk into GridFS using openUploadStream
28
- *
29
- * @example -class GridFSBucket
30
- * @example -method openUploadStream
31
28
*/
32
29
it ( 'should upload from file stream' , {
33
30
metadata : { requires : { topology : [ 'single' ] } } ,
@@ -86,9 +83,6 @@ describe.only('GridFS Stream', function () {
86
83
87
84
/**
88
85
* Correctly stream a file from disk into GridFS using openUploadStreamWithId
89
- *
90
- * @example -class GridFSBucket
91
- * @example -method openUploadStreamWithId
92
86
*/
93
87
it ( 'should upload from file stream with custom id' , {
94
88
metadata : { requires : { topology : [ 'single' ] } } ,
@@ -131,9 +125,6 @@ describe.only('GridFS Stream', function () {
131
125
132
126
/**
133
127
* Correctly upload a file to GridFS and then retrieve it as a stream
134
- *
135
- * @example -class GridFSBucket
136
- * @example -method openDownloadStream
137
128
*/
138
129
it ( 'should download to upload stream' , {
139
130
metadata : { requires : { topology : [ 'single' ] } } ,
@@ -188,9 +179,6 @@ describe.only('GridFS Stream', function () {
188
179
189
180
/**
190
181
* Correctly download a GridFS file by name
191
- *
192
- * @example -class GridFSBucket
193
- * @example -method openDownloadStreamByName
194
182
*/
195
183
it ( 'openDownloadStreamByName' , {
196
184
metadata : { requires : { topology : [ 'single' ] } } ,
@@ -210,9 +198,6 @@ describe.only('GridFS Stream', function () {
210
198
211
199
/**
212
200
* 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
216
201
*/
217
202
it ( 'start/end options for openDownloadStream' , {
218
203
metadata : { requires : { topology : [ 'single' ] } } ,
@@ -269,9 +254,6 @@ describe.only('GridFS Stream', function () {
269
254
270
255
/**
271
256
* Deleting a file from GridFS
272
- *
273
- * @example -class GridFSBucket
274
- * @example -method delete
275
257
*/
276
258
it ( 'Deleting a file' , {
277
259
metadata : { requires : { topology : [ 'single' ] } } ,
@@ -376,9 +358,6 @@ describe.only('GridFS Stream', function () {
376
358
377
359
/*
378
360
* Find all associates files with a bucket
379
- *
380
- * @example -class GridFSBucket
381
- * @example -method find
382
361
*/
383
362
it ( 'find example' , {
384
363
metadata : { requires : { topology : [ 'single' ] } } ,
@@ -398,9 +377,6 @@ describe.only('GridFS Stream', function () {
398
377
399
378
/**
400
379
* Rename a file
401
- *
402
- * @example -class GridFSBucket
403
- * @example -method rename
404
380
*/
405
381
it ( 'rename example' , {
406
382
metadata : { requires : { topology : [ 'single' ] } } ,
0 commit comments