MCPcopy
hub / github.com/parse-community/parse-server / fullTextHelper

Function fullTextHelper

spec/ParseQuery.FullTextSearch.spec.js:7–21  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

5const request = require('../lib/request');
6
7const 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
23describe('Parse.Query Full Text Search testing', () => {
24 it_id('77ba6779-6584-4e09-8e7e-31f89e741d6a')(it)('fullTextSearch: $search', async () => {

Calls

no outgoing calls

Tested by

no test coverage detected