mirror of
https://github.com/denoland/deno.git
synced 2024-11-23 15:16:54 -05:00
9 lines
248 B
TypeScript
9 lines
248 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));
|
||
|
});
|