Add ability to unit test by permissions.

This commit is contained in:
Ryan Dahl 2018-08-23 19:47:43 -04:00
parent 722c7e4a1b
commit e13f3c10ca
7 changed files with 113 additions and 25 deletions

View file

@ -24,22 +24,14 @@ export interface TestDefinition {
export const exitOnFail = true;
/* A subset of the tests can be ran by providing a filter expression.
* In Node.js the filter is specified on the command line:
*
* ts-node test_node log # all tests with 'log' in the name
* ts-node test_node ^util # tests starting with 'util'
*
* In the browser, the filter is specified as part of the url:
*
* http://localhost:9876/test.html#script=some/script.js&filter=log
* http://localhost:9876/test.html#script=some/script.js&filter=^util
*/
let filterExpr: string = null;
const filterRegExp = filterExpr ? new RegExp(filterExpr, "i") : null;
let filterRegExp: RegExp | null;
const tests: TestDefinition[] = [];
// Must be called before any test() that needs to be filtered.
export function setFilter(s: string): void {
filterRegExp = new RegExp(s, "i");
}
export function test(t: TestDefinition | TestFunction): void {
const fn: TestFunction = typeof t === "function" ? t : t.fn;
const name: string = t.name;