()
| 5 | const request = require('../lib/request'); |
| 6 | |
| 7 | const fullTextHelper = async () => { |
| 8 | const subjects = [ |
| 9 | 'coffee', |
| 10 | 'Coffee Shopping', |
| 11 | 'Baking a cake', |
| 12 | 'baking', |
| 13 | 'Café Con Leche', |
| 14 | 'Сырники', |
| 15 | 'coffee and cream', |
| 16 | 'Cafe con Leche', |
| 17 | ]; |
| 18 | await Parse.Object.saveAll( |
| 19 | subjects.map(subject => new Parse.Object('TestObject').set({ subject, comment: subject })) |
| 20 | ); |
| 21 | }; |
| 22 | |
| 23 | describe('Parse.Query Full Text Search testing', () => { |
| 24 | it_id('77ba6779-6584-4e09-8e7e-31f89e741d6a')(it)('fullTextSearch: $search', async () => { |
no outgoing calls
no test coverage detected