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