mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
a7bb8ccce8
To display specific build args passed to GN.
12 lines
329 B
TypeScript
12 lines
329 B
TypeScript
import { test, assert } from "./test_util.ts";
|
|
|
|
test(function version() {
|
|
const pattern = /^\d+\.\d+\.\d+$/;
|
|
assert(pattern.test(Deno.version.deno));
|
|
assert(pattern.test(Deno.version.v8));
|
|
assert(pattern.test(Deno.version.typescript));
|
|
});
|
|
|
|
test(function versionGnArgs() {
|
|
assert(Deno.version.gnArgs.length > 100);
|
|
});
|