Skip to content

Commit 207c3c0

Browse files
committed
wip
1 parent ca74929 commit 207c3c0

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

spec/CloudCode.spec.js

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -200,8 +200,7 @@ describe('Cloud Code', () => {
200200
done();
201201
}
202202
});
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 () => {
205204
Parse.Cloud.beforeFind('beforeFind', () => {
206205
return new Parse.Object('TestObject', { foo: 'bar' });
207206
});
@@ -215,7 +214,7 @@ describe('Cloud Code', () => {
215214
await newObj.save();
216215
});
217216

218-
fit('beforeFind can return array of objects without DB operation', async () => {
217+
it('beforeFind can return array of objects without DB operation', async () => {
219218
Parse.Cloud.beforeFind('beforeFind', () => {
220219
return [new Parse.Object('TestObject', { foo: 'bar' })];
221220
});
@@ -229,7 +228,7 @@ describe('Cloud Code', () => {
229228
await newObj.save();
230229
});
231230

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 () => {
233232
Parse.Cloud.beforeFind('beforeFind', () => {
234233
return [new Parse.Object('TestObject', { foo: 'bar' })];
235234
});

0 commit comments

Comments
 (0)