Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
kibertoad committed Jan 18, 2024
1 parent 72b8d87 commit f577c92
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/client.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,6 @@ describe('frontend-http-client', () => {
await expect(
sendPost(client, {
path: '/',
body: {} as any, // otherwise it breaks at compilation already
queryParams: testQueryParams,
queryParamsSchema: queryParamsSchema as any,
responseBodySchema: responseSchema,
Expand Down Expand Up @@ -172,7 +171,6 @@ describe('frontend-http-client', () => {

const response = await sendPost(client, {
path: '/',
body: {} as any, // otherwise it breaks at compilation already
queryParams: testQueryParams,
queryParamsSchema: undefined,
responseBodySchema: responseSchema,
Expand Down Expand Up @@ -365,7 +363,6 @@ describe('frontend-http-client', () => {
await expect(
sendPut(client, {
path: '/',
body: {} as any, // otherwise it breaks at compilation already
queryParams: testQueryParams,
queryParamsSchema: queryParamsSchema as any,
responseBodySchema: responseSchema,
Expand Down Expand Up @@ -541,7 +538,6 @@ describe('frontend-http-client', () => {
await expect(
sendPatch(client, {
path: '/',
body: {} as any, // otherwise it breaks at compilation already
queryParams: testQueryParams,
queryParamsSchema: queryParamsSchema as any,
responseBodySchema: responseSchema,
Expand Down

0 comments on commit f577c92

Please sign in to comment.