Skip to content

Commit 2414650

Browse files
committed
Remove skip tests on succeeding tests
1 parent 10474f3 commit 2414650

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

tests/search_tests.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ afterAll(() => {
6767

6868
describe.each([
6969
{ client: masterClient, permission: 'Master' },
70-
{ client: privateClient, permission: 'Private' }, // Skipped until search fixed
71-
{ client: publicClient, permission: 'Public' }, // Skipped until search fixed
70+
{ client: privateClient, permission: 'Private' },
71+
{ client: publicClient, permission: 'Public' },
7272
])('Test on search', ({ client, permission }) => {
7373
describe.each([
7474
{ method: 'POST' as Types.Methods, permission, client },
@@ -438,7 +438,7 @@ describe.each([
438438
})
439439
})
440440

441-
test.skip(`${permission} key: ${method} search with multiple filter and undefined query (placeholder)`, async () => {
441+
test(`${permission} key: ${method} search with multiple filter and undefined query (placeholder)`, async () => {
442442
await client
443443
.index(index.uid)
444444
.search(
@@ -457,7 +457,7 @@ describe.each([
457457
})
458458
})
459459

460-
test.skip(`${permission} key: ${method} search with multiple filter and null query (placeholder)`, async () => {
460+
test(`${permission} key: ${method} search with multiple filter and null query (placeholder)`, async () => {
461461
await client
462462
.index(index.uid)
463463
.search(
@@ -477,7 +477,7 @@ describe.each([
477477
})
478478
})
479479

480-
test.skip(`${permission} key: ${method} search with multiple filter and empty string query (placeholder)`, async () => {
480+
test(`${permission} key: ${method} search with multiple filter and empty string query (placeholder)`, async () => {
481481
await client
482482
.index(index.uid)
483483
.search(

tests/typed_search_tests.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ import {
33
clearAllIndexes,
44
config,
55
masterClient,
6-
// privateClient, // skipped until fixed
7-
// publicClient, // skipped until fixed
6+
privateClient,
7+
publicClient,
88
anonymousClient,
99
BAD_HOST,
1010
MeiliSearch,
@@ -72,8 +72,8 @@ afterAll(() => {
7272

7373
describe.each([
7474
{ client: masterClient, permission: 'Master' },
75-
// { client: privateClient, permission: 'Private' }, // skipped until search fix
76-
// { client: publicClient, permission: 'Public' }, // skipped until search fix
75+
{ client: privateClient, permission: 'Private' },
76+
{ client: publicClient, permission: 'Public' },
7777
])('Test on search', ({ client, permission }) => {
7878
describe.each([
7979
{ method: 'POST' as Methods, permission, client },

0 commit comments

Comments
 (0)