From 61273085e40fb4d992eef4b1b5601e3567c80664 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Tue, 11 Feb 2020 17:24:27 +0100 Subject: refactor: rewrite tests in std/ to use Deno.test (#3930) --- std/mime/multipart_test.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'std/mime/multipart_test.ts') diff --git a/std/mime/multipart_test.ts b/std/mime/multipart_test.ts index d3e49aa4d..95425368c 100644 --- a/std/mime/multipart_test.ts +++ b/std/mime/multipart_test.ts @@ -7,7 +7,7 @@ import { assertThrows, assertThrowsAsync } from "../testing/asserts.ts"; -import { test, runIfMain } from "../testing/mod.ts"; +const { test } = Deno; import * as path from "../path/mod.ts"; import { FormFile, @@ -213,5 +213,3 @@ test(async function multipartMultipartReader2(): Promise { } } }); - -runIfMain(import.meta); -- cgit v1.2.3