@@ -6,7 +6,7 @@ import superagent from "superagent";
6
6
import { afterAll , bench , describe } from "vitest" ;
7
7
import createClient , { createPathBasedClient } from "../dist/index.js" ;
8
8
import * as openapiTSCodegen from "./fixtures/openapi-typescript-codegen.min.js" ;
9
- import { createApiFetchClient } from ' feature-fetch' ;
9
+ import { createApiFetchClient } from " feature-fetch" ;
10
10
11
11
const BASE_URL = "https://api.test.local" ;
12
12
@@ -59,9 +59,9 @@ describe("setup", () => {
59
59
} ) ;
60
60
} ) ;
61
61
62
- bench ( ' feature-fetch' , async ( ) => {
62
+ bench ( " feature-fetch" , async ( ) => {
63
63
createApiFetchClient ( { prefixUrl : BASE_URL } ) ;
64
- } )
64
+ } ) ;
65
65
66
66
// superagent: N/A
67
67
} ) ;
@@ -126,10 +126,10 @@ describe("get (headers)", () => {
126
126
const axiosInstance = axios . create ( {
127
127
baseURL : BASE_URL ,
128
128
} ) ;
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
+ } ) ;
133
133
134
134
bench ( "openapi-fetch" , async ( ) => {
135
135
await openapiFetch . GET ( "/url" , {
0 commit comments