summaryrefslogtreecommitdiff
path: root/tests/unit/version_test.ts
blob: 4eadb7620c186e15cdc69bbe1569603fe2664960 (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.3.3");
});