(obj)
| 358 | const subscription = await query.subscribe(); |
| 359 | const spy = { |
| 360 | create(obj) { |
| 361 | if (!obj.get('yolo')) { |
| 362 | fail('create should not have been called'); |
| 363 | } |
| 364 | }, |
| 365 | update(object, original) { |
| 366 | if (object.get('yolo') === original.get('yolo')) { |
| 367 | fail('create should not have been called'); |