Skip to content

Commit 689eeff

Browse files
committed
lint
1 parent eb33736 commit 689eeff

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/server/test/examples-smoke.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import type { Operation } from "effection";
2323

2424
it("basic example imports and runs", async () => {
2525
const runner = basicServices as unknown as () => Operation<
26-
ServiceGraph<Record<string, unknown>>
26+
ServiceGraph<any, unknown>
2727
>; // runner
2828
let provided: any;
2929

@@ -137,9 +137,9 @@ it("basic example imports and runs", async () => {
137137

138138
it("concurrency example imports and runs", async () => {
139139
const runner = concurrencyServices as unknown as () => Operation<
140-
ServiceGraph<Record<string, unknown>>
140+
ServiceGraph<any, unknown>
141141
>; // runner
142-
let provided: ServiceGraph<Record<string, unknown>> | undefined;
142+
let provided: ServiceGraph<any, unknown> | undefined;
143143

144144
await run(function* () {
145145
const [scope, destroy] = createScope();

0 commit comments

Comments
 (0)