Skip to content

Commit

Permalink
fix: algoliasearch tests
Browse files Browse the repository at this point in the history
  • Loading branch information
shortcuts committed Dec 12, 2023
1 parent 2ba98b7 commit 77ec8be
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ describe('api', () => {
});

it('sets the user agent', async () => {
const req = (await client.post({
const req = (await client.customPost({
path: '/test',
})) as unknown as EchoResponse;

Expand Down Expand Up @@ -166,13 +166,13 @@ describe('api', () => {
region: 'eu',
});

const res1 = (await abtestingClient.get({
const res1 = (await abtestingClient.customGet({
path: 'abtestingClient',
})) as unknown as EchoResponse;
const res2 = (await analyticsClient.get({
const res2 = (await analyticsClient.customGet({
path: 'analyticsClient',
})) as unknown as EchoResponse;
const res3 = (await personalizationClient.get({
const res3 = (await personalizationClient.customGet({
path: 'personalizationClient',
})) as unknown as EchoResponse;

Expand Down Expand Up @@ -211,13 +211,13 @@ describe('api', () => {
region: 'eu',
});

const res1 = (await abtestingClient.get({
const res1 = (await abtestingClient.customGet({
path: 'abtestingClient',
})) as unknown as EchoResponse;
const res2 = (await analyticsClient.get({
const res2 = (await analyticsClient.customGet({
path: 'analyticsClient',
})) as unknown as EchoResponse;
const res3 = (await personalizationClient.get({
const res3 = (await personalizationClient.customGet({
path: 'personalizationClient',
})) as unknown as EchoResponse;

Expand Down

0 comments on commit 77ec8be

Please sign in to comment.