From db8e5145e09aef84a8986228d2edf800ede60674 Mon Sep 17 00:00:00 2001 From: JTAG Date: Sat, 23 Dec 2023 11:08:48 +0330 Subject: [PATCH] style: format file --- blog_test.ts | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/blog_test.ts b/blog_test.ts index ecfe89c..b23f4f7 100644 --- a/blog_test.ts +++ b/blog_test.ts @@ -362,11 +362,16 @@ Deno.test( const body = await resp.text(); assertStringIncludes(body, `Custom post`); const respStaticFile = await customRootDirectoryTestHandler( - new Request("https://blog.deno.dev/cat_custom_path.png"), + new Request("https://blog.deno.dev/cat_custom_path.png"), ); assertEquals(respStaticFile.status, 200); assertEquals(respStaticFile.headers.get("content-type"), "image/png"); const bytes = new Uint8Array(await respStaticFile.arrayBuffer()); - assertEquals(bytes, await Deno.readFile(join(TESTDATA_PATH, "./customRootDir/cat_custom_path.png"))); + assertEquals( + bytes, + await Deno.readFile( + join(TESTDATA_PATH, "./customRootDir/cat_custom_path.png"), + ), + ); }, );