blob: 80a1d932535dca3f59635bf6bfabed267cb73521 (
plain)
1
2
3
4
5
6
7
8
9
|
// Copyright 2018 the Deno authors. All rights reserved. MIT license.
import { test, assert } from "./test_util.ts";
import * as deno from "deno";
test(function transformPlatformSuccess() {
// Make sure they are transformed
assert(deno.arch !== "unknown");
assert(deno.platform !== "unknown");
});
|