@@ -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 upload a file to GridFS and then retrieve it as a stream
89
- *
90
- * @example -class GridFSBucket
91
- * @example -method openDownloadStream
92
86
*/
93
87
it ( 'should download to upload stream' , {
94
88
metadata : { requires : { topology : [ 'single' ] } } ,
@@ -143,9 +137,6 @@ describe.only('GridFS Stream', function () {
143
137
144
138
/**
145
139
* Correctly download a GridFS file by name
146
- *
147
- * @example -class GridFSBucket
148
- * @example -method openDownloadStreamByName
149
140
*/
150
141
it ( 'openDownloadStreamByName' , {
151
142
metadata : { requires : { topology : [ 'single' ] } } ,
@@ -165,9 +156,6 @@ describe.only('GridFS Stream', function () {
165
156
166
157
/**
167
158
* 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
171
159
*/
172
160
it ( 'start/end options for openDownloadStream' , {
173
161
metadata : { requires : { topology : [ 'single' ] } } ,
@@ -224,9 +212,6 @@ describe.only('GridFS Stream', function () {
224
212
225
213
/**
226
214
* Deleting a file from GridFS
227
- *
228
- * @example -class GridFSBucket
229
- * @example -method delete
230
215
*/
231
216
it ( 'Deleting a file' , {
232
217
metadata : { requires : { topology : [ 'single' ] } } ,
@@ -331,9 +316,6 @@ describe.only('GridFS Stream', function () {
331
316
332
317
/*
333
318
* Find all associates files with a bucket
334
- *
335
- * @example -class GridFSBucket
336
- * @example -method find
337
319
*/
338
320
it ( 'find example' , {
339
321
metadata : { requires : { topology : [ 'single' ] } } ,
@@ -353,9 +335,6 @@ describe.only('GridFS Stream', function () {
353
335
354
336
/**
355
337
* Rename a file
356
- *
357
- * @example -class GridFSBucket
358
- * @example -method rename
359
338
*/
360
339
it ( 'rename example' , {
361
340
metadata : { requires : { topology : [ 'single' ] } } ,
0 commit comments