mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
c9ef182886
- Fixes cargo publish on deno_typescript, deno_cli_snapshots, and deno_cli. - Combines cli_snapshots and js into one directory. - Extracts TS version at compile time rather than runtime - Bumps version awkwardly - it was necessary to test end-to-end publishing. Sorry. - Adds git submodule deno_typescript/typescript
8 lines
253 B
TypeScript
8 lines
253 B
TypeScript
import { test, assert } from "./test_util.ts";
|
|
|
|
test(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));
|
|
});
|