summaryrefslogtreecommitdiff
path: root/tests/unit/version_test.ts
blob: bc0297f23f7ada540e3e4b5e439a7b92f0da0916 (plain)
1
2
3
4
5
6
7
8
9
10
// 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.4.5");
});