From d5cbeb23d63cdf0313b5aa93a2b3864cb316c4ac Mon Sep 17 00:00:00 2001 From: Christoph Fricke Date: Thu, 21 Dec 2023 20:32:57 +0100 Subject: [PATCH] chore: run formatting to organize all imports --- src/openapi-http.test.ts | 4 ++-- src/path-mapping.test.ts | 2 +- vitest.config.ts | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/openapi-http.test.ts b/src/openapi-http.test.ts index d011a32..97eb09c 100644 --- a/src/openapi-http.test.ts +++ b/src/openapi-http.test.ts @@ -1,8 +1,8 @@ /* eslint-disable @typescript-eslint/no-explicit-any */ -import { describe, expect, it, vi } from "vitest"; import { http as mswHttp } from "msw"; -import { createOpenApiHttp } from "./openapi-http.js"; +import { describe, expect, it, vi } from "vitest"; import type { HttpMethod } from "./api-spec.js"; +import { createOpenApiHttp } from "./openapi-http.js"; const methods: HttpMethod[] = [ "get", diff --git a/src/path-mapping.test.ts b/src/path-mapping.test.ts index 0acae00..e1357aa 100644 --- a/src/path-mapping.test.ts +++ b/src/path-mapping.test.ts @@ -1,5 +1,5 @@ +import { describe, expect, it } from "vitest"; import { convertToColonPath } from "./path-mapping.js"; -import { describe, it, expect } from "vitest"; describe(convertToColonPath, () => { it("should leave paths with no path fragments untouched", () => { diff --git a/vitest.config.ts b/vitest.config.ts index 45ca11a..09fc798 100644 --- a/vitest.config.ts +++ b/vitest.config.ts @@ -1,5 +1,5 @@ -import { name, exports } from "./package.json"; import { defineProject } from "vitest/config"; +import { exports, name } from "./package.json"; const suite = process.env["TEST_SUITE"];