diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2020-05-20 17:52:51 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-20 17:52:51 -0400 |
commit | 30702e2678200b6e21ba142347d2d213b86e9c6d (patch) | |
tree | fe53d6ad8631e7e2e76c3b3c5935e26bff89a352 /cli/tests/unit/build_test.ts | |
parent | 49dda23f6b936f21de2a3de4be39771f30ddd6e9 (diff) |
move js unit tests to cli/tests (#5678)
Diffstat (limited to 'cli/tests/unit/build_test.ts')
-rw-r--r-- | cli/tests/unit/build_test.ts | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/cli/tests/unit/build_test.ts b/cli/tests/unit/build_test.ts new file mode 100644 index 000000000..987ed8d39 --- /dev/null +++ b/cli/tests/unit/build_test.ts @@ -0,0 +1,10 @@ +// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. +import { unitTest, assert } from "./test_util.ts"; + +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; + assert(arch.length > 0); + assert(os === "darwin" || os === "windows" || os === "linux"); +}); |