Skip to content

Commit 2006ddf

Browse files
committed
build fix
1 parent 6d952e7 commit 2006ddf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spec/CloudCode.spec.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -3225,10 +3225,10 @@ describe('afterLogin hook', () => {
32253225
await query.find({ context: { a: 'a' } });
32263226
});
32273227

3228-
it('beforeFine and afterFind should have access to context while making fetch call', async () => {
3228+
it('beforeFind and afterFind should have access to context while making fetch call', async () => {
32293229
Parse.Cloud.beforeFind('TestObject', req => {
32303230
expect(req.context.a).toEqual('a');
3231-
expect(req.context.b).to.not.exist;
3231+
expect(req.context.b).toBeUndefined();
32323232
req.context.b = 'b';
32333233
});
32343234
Parse.Cloud.afterFind('TestObject', req => {

0 commit comments

Comments
 (0)