mirror of
https://github.com/swc-project/swc.git
synced 2024-11-24 02:06:08 +03:00
9 lines
261 B
TypeScript
9 lines
261 B
TypeScript
import { unitTest, assert } from "./test_util.ts";
|
|
|
|
unitTest(function version(): void {
|
|
const pattern = /^\d+\.\d+\.\d+/;
|
|
assert(pattern.test(Deno.version.deno));
|
|
assert(pattern.test(Deno.version.v8));
|
|
assert(pattern.test(Deno.version.typescript));
|
|
});
|