From 2419f3e51f5e3b8ae037a532d3f34dc276f42d1c Mon Sep 17 00:00:00 2001 From: Vlad Marginean Date: Wed, 1 Jan 2025 19:24:28 +0200 Subject: [PATCH] style: format imports in api.test.ts --- test/api.test.ts | 29 ++++++++++++++++++++++------- 1 file changed, 22 insertions(+), 7 deletions(-) diff --git a/test/api.test.ts b/test/api.test.ts index c10df19..45e60a2 100644 --- a/test/api.test.ts +++ b/test/api.test.ts @@ -1,12 +1,27 @@ import { - AnyState, API_ACTION_PREFIX, ApiCtx, call, createApi, createKey, keepAlive, mdw, Operation, - safe, takeEvery, waitFor -} from '../mod.ts'; -import { useCache } from '../react.ts'; + AnyState, + API_ACTION_PREFIX, + ApiCtx, + call, + createApi, + createKey, + keepAlive, + mdw, + Operation, + safe, + takeEvery, + waitFor, +} from "../mod.ts"; +import { useCache } from "../react.ts"; import { - createSchema, createStore, select, slice, updateStore, waitForLoader -} from '../store/mod.ts'; -import { describe, expect, it } from '../test.ts'; + createSchema, + createStore, + select, + slice, + updateStore, + waitForLoader, +} from "../store/mod.ts"; +import { describe, expect, it } from "../test.ts"; interface User { id: string;