From c4682aa6266f01e33ae7e0e62817531fea239c6a Mon Sep 17 00:00:00 2001 From: Taras Mankovski Date: Fri, 20 Dec 2024 15:31:41 -0500 Subject: [PATCH] Fix format --- test/resource.test.ts | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/test/resource.test.ts b/test/resource.test.ts index 24b46ccf..ed5a14ba 100644 --- a/test/resource.test.ts +++ b/test/resource.test.ts @@ -1,5 +1,12 @@ import { describe, expect, it } from "./suite.ts"; -import { type Operation, resource, run, sleep, spawn, suspend } from "../mod.ts"; +import { + type Operation, + resource, + run, + sleep, + spawn, + suspend, +} from "../mod.ts"; type State = { status: string };