diff options
Diffstat (limited to 'cli/js/build_test.ts')
-rw-r--r-- | cli/js/build_test.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/js/build_test.ts b/cli/js/build_test.ts index 3af6773aa..50c7b519c 100644 --- a/cli/js/build_test.ts +++ b/cli/js/build_test.ts @@ -1,7 +1,7 @@ // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. -import { test, assert } from "./test_util.ts"; +import { unitTest, assert } from "./test_util.ts"; -test(function buildInfo(): void { +unitTest(function buildInfo(): void { // Deno.build is injected by rollup at compile time. Here // we check it has been properly transformed. const { arch, os } = Deno.build; |