@@ -200,8 +200,7 @@ describe('Cloud Code', () => {
200
200
done ( ) ;
201
201
}
202
202
} ) ;
203
- fit ( 'beforeFind can return object without DB operation' , async ( ) => {
204
- await reconfigureServer ( { silent : false } ) ;
203
+ it ( 'beforeFind can return object without DB operation' , async ( ) => {
205
204
Parse . Cloud . beforeFind ( 'beforeFind' , ( ) => {
206
205
return new Parse . Object ( 'TestObject' , { foo : 'bar' } ) ;
207
206
} ) ;
@@ -215,7 +214,7 @@ describe('Cloud Code', () => {
215
214
await newObj . save ( ) ;
216
215
} ) ;
217
216
218
- fit ( 'beforeFind can return array of objects without DB operation' , async ( ) => {
217
+ it ( 'beforeFind can return array of objects without DB operation' , async ( ) => {
219
218
Parse . Cloud . beforeFind ( 'beforeFind' , ( ) => {
220
219
return [ new Parse . Object ( 'TestObject' , { foo : 'bar' } ) ] ;
221
220
} ) ;
@@ -229,7 +228,7 @@ describe('Cloud Code', () => {
229
228
await newObj . save ( ) ;
230
229
} ) ;
231
230
232
- fit ( 'beforeFind can return object for get query without DB operation' , async ( ) => {
231
+ it ( 'beforeFind can return object for get query without DB operation' , async ( ) => {
233
232
Parse . Cloud . beforeFind ( 'beforeFind' , ( ) => {
234
233
return [ new Parse . Object ( 'TestObject' , { foo : 'bar' } ) ] ;
235
234
} ) ;
0 commit comments