Skip to content

Commit 2844c14

Browse files
committed
#main lint fix
1 parent f4c28bc commit 2844c14

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

packages/openapi-fetch/test/index.bench.js

+7-7
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import superagent from "superagent";
66
import { afterAll, bench, describe } from "vitest";
77
import createClient, { createPathBasedClient } from "../dist/index.js";
88
import * as openapiTSCodegen from "./fixtures/openapi-typescript-codegen.min.js";
9-
import { createApiFetchClient } from 'feature-fetch';
9+
import { createApiFetchClient } from "feature-fetch";
1010

1111
const BASE_URL = "https://api.test.local";
1212

@@ -59,9 +59,9 @@ describe("setup", () => {
5959
});
6060
});
6161

62-
bench('feature-fetch', async () => {
62+
bench("feature-fetch", async () => {
6363
createApiFetchClient({ prefixUrl: BASE_URL });
64-
})
64+
});
6565

6666
// superagent: N/A
6767
});
@@ -126,10 +126,10 @@ describe("get (headers)", () => {
126126
const axiosInstance = axios.create({
127127
baseURL: BASE_URL,
128128
});
129-
const featureFetch = createApiFetchClient({
130-
prefixUrl: BASE_URL,
131-
headers: { "x-base-header": '123' }
132-
});
129+
const featureFetch = createApiFetchClient({
130+
prefixUrl: BASE_URL,
131+
headers: { "x-base-header": "123" },
132+
});
133133

134134
bench("openapi-fetch", async () => {
135135
await openapiFetch.GET("/url", {

0 commit comments

Comments
 (0)