mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
f4385866f8
Updated from: https://github.com/denoland/TypeScript/pull/2
8 lines
261 B
TypeScript
8 lines
261 B
TypeScript
import { assert, assertEquals } from "./test_util.ts";
|
|
|
|
Deno.test(function version() {
|
|
const pattern = /^\d+\.\d+\.\d+/;
|
|
assert(pattern.test(Deno.version.deno));
|
|
assert(pattern.test(Deno.version.v8));
|
|
assertEquals(Deno.version.typescript, "4.9.3");
|
|
});
|