Skip to content

Commit bb9a022

Browse files
committed
Unskip get search tests
1 parent d4a2a8a commit bb9a022

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tests/get_search.test.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ describe.each([
202202
})
203203
})
204204

205-
test.skip(`${permission} key: search with all options but not all fields`, async () => {
205+
test(`${permission} key: search with all options but not all fields`, async () => {
206206
const client = await getClient(permission)
207207
const response = await client.index(index.uid).searchGet('prince', {
208208
limit: 5,
@@ -236,7 +236,7 @@ describe.each([
236236
)
237237
})
238238

239-
test.skip(`${permission} key: search on default cropping parameters`, async () => {
239+
test(`${permission} key: search on default cropping parameters`, async () => {
240240
const client = await getClient(permission)
241241
const response = await client.index(index.uid).searchGet('prince', {
242242
attributesToCrop: ['*'],
@@ -249,7 +249,7 @@ describe.each([
249249
)
250250
})
251251

252-
test.skip(`${permission} key: search on customized cropMarker`, async () => {
252+
test(`${permission} key: search on customized cropMarker`, async () => {
253253
const client = await getClient(permission)
254254
const response = await client.index(index.uid).searchGet('prince', {
255255
attributesToCrop: ['*'],
@@ -263,7 +263,7 @@ describe.each([
263263
)
264264
})
265265

266-
test.skip(`${permission} key: search on customized highlight tags`, async () => {
266+
test(`${permission} key: search on customized highlight tags`, async () => {
267267
const client = await getClient(permission)
268268
const response = await client.index(index.uid).searchGet('prince', {
269269
attributesToHighlight: ['*'],
@@ -277,7 +277,7 @@ describe.each([
277277
)
278278
})
279279

280-
test.skip(`${permission} key: search with all options and all fields`, async () => {
280+
test(`${permission} key: search with all options and all fields`, async () => {
281281
const client = await getClient(permission)
282282
const response = await client.index(index.uid).searchGet('prince', {
283283
limit: 5,

0 commit comments

Comments
 (0)