(i)
| 1009 | |
| 1010 | it('equalTo queries', function (done) { |
| 1011 | const makeBoxedNumber = function (i) { |
| 1012 | return new BoxedNumber({ number: i }); |
| 1013 | }; |
| 1014 | Parse.Object.saveAll([0, 1, 2, 3, 4, 5, 6, 7, 8, 9].map(makeBoxedNumber)).then(function () { |
| 1015 | const query = new Parse.Query(BoxedNumber); |
| 1016 | query.equalTo('number', 3); |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…