mirror of
https://github.com/Wessel/lumah.git
synced 2026-07-16 21:45:16 +02:00
5 lines
161 B
JavaScript
5 lines
161 B
JavaScript
const run = require( './runTests' );
|
|
let tests = [];
|
|
|
|
exports.register = ( name, method ) => tests.push({ method, name });
|
|
exports.start = () => run( tests ); |