mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
8d96dffa41
Rewrite "testPerm" helper function used for testing of internal runtime code. It's been renamed to "unitTest" and provides API that is extensible in the future by accepting optional "UnitTestOptions" argument. "test" helper was also removed and replaced by overloaded version of "unitTest" that takes only function argument. "UnitTestOptions" currently supports "perms" and "skip" options, where former works exactly as first argument to "testPerm" did, while the latter allows to conditionally skip tests.
8 lines
261 B
TypeScript
8 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));
|
|
});
|