mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
3242e2718f
This commit upgrades TypeScript to 5.5.2. https://devblogs.microsoft.com/typescript/announcing-typescript-5-5/
10 lines
337 B
TypeScript
10 lines
337 B
TypeScript
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
|
|
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, "5.5.2");
|
|
});
|