Skip to content

Commit

Permalink
chore: run formatting to organize all imports
Browse files Browse the repository at this point in the history
  • Loading branch information
christoph-fricke committed Dec 21, 2023
1 parent 0671708 commit d5cbeb2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/openapi-http.test.ts
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/path-mapping.test.ts
Original file line number Diff line number Diff line change
@@ -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", () => {
Expand Down
2 changes: 1 addition & 1 deletion vitest.config.ts
Original file line number Diff line number Diff line change
@@ -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"];

Expand Down

0 comments on commit d5cbeb2

Please sign in to comment.