diff --git a/src/browser.test.ts b/src/browser.test.ts index c43076f..8ed0671 100644 --- a/src/browser.test.ts +++ b/src/browser.test.ts @@ -1,4 +1,4 @@ -import {expect, test, vi, describe, beforeEach} from "vitest" +import {beforeEach, describe, expect, test, vi} from "vitest" import {isAutomatic, isManual, isNotAutomatic, isNotSupported, isSupported, isUnsupported} from "./browser.ts"; beforeEach(() => { diff --git a/src/utils.test.ts b/src/utils.test.ts index 27a60f2..a38ba30 100644 --- a/src/utils.test.ts +++ b/src/utils.test.ts @@ -1,4 +1,4 @@ -import {expect, test, vi, describe, beforeEach, assert} from "vitest" +import {assert, describe, expect, test} from "vitest" import {except, isArrayBuffer, isObjectEmpty, mergeDeep, normalizeOptions, pull} from "./utils.ts"; import {CeremonyOptionsWithoutPath} from "./types.ts"; import config from "./config.ts"; diff --git a/src/utils.ts b/src/utils.ts index 454e957..3c5779a 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -1,4 +1,4 @@ -import {CeremonyOptionsWithoutPath, CeremonyOptions, Config } from "./types.ts" +import {CeremonyOptions, CeremonyOptionsWithoutPath, Config} from "./types.ts" /** * Extracts a single key for the object. diff --git a/src/webpass.ts b/src/webpass.ts index 50d249c..ea14944 100644 --- a/src/webpass.ts +++ b/src/webpass.ts @@ -1,15 +1,16 @@ import type { AssertionResult, AttestationResult, - CeremonyOptionsWithoutPath, CeremonyResultRaw, + CeremonyOptionsWithoutPath, + CeremonyResultRaw, Config, ServerPublicKeyCredentialCreationOptions, ServerPublicKeyCredentialRequestOptions, Webpass, WebpassStatic } from "./types.ts" -import {isNotSupported, isSupported, isUnsupported, isAutomatic, isNotAutomatic, isManual} from "./browser.ts" -import {mergeDeep, isObjectEmpty, normalizeOptions, except, isArrayBuffer} from "./utils.ts" +import {isAutomatic, isManual, isNotAutomatic, isNotSupported, isSupported, isUnsupported} from "./browser.ts" +import {isArrayBuffer, isObjectEmpty, mergeDeep, normalizeOptions} from "./utils.ts" import defaultConfig from "./config.ts" import wfetch from "./wfetch.ts" diff --git a/src/wfetch.test.ts b/src/wfetch.test.ts index 097739d..e5e0ef2 100644 --- a/src/wfetch.test.ts +++ b/src/wfetch.test.ts @@ -1,4 +1,4 @@ -import {expect, test, vi, describe, beforeEach} from "vitest" +import {beforeEach, describe, expect, test, vi} from "vitest" import wfetch from "./wfetch.ts"; vi.mock('ofetch', () => {