diff options
Diffstat (limited to 'js/build_test.ts')
-rw-r--r-- | js/build_test.ts | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/js/build_test.ts b/js/build_test.ts deleted file mode 100644 index 4423de338..000000000 --- a/js/build_test.ts +++ /dev/null @@ -1,10 +0,0 @@ -// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. -import { test, assert } from "./test_util.ts"; - -test(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; - assert(arch === "x64"); - assert(os === "mac" || os === "win" || os === "linux"); -}); |