Skip to content

Commit

Permalink
style: format imports in api.test.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
VldMrgnn committed Jan 1, 2025
1 parent 7a6cc7f commit 2419f3e
Showing 1 changed file with 22 additions and 7 deletions.
29 changes: 22 additions & 7 deletions test/api.test.ts
Original file line number Diff line number Diff line change
@@ -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;
Expand Down

0 comments on commit 2419f3e

Please sign in to comment.