15 lines
327 B
JavaScript
Raw Normal View History

2019-11-18 18:18:28 -08:00
const {TestRunner, Matchers, Reporter} = require('..');
const testRunner = new TestRunner();
const {expect} = new Matchers();
require('./testrunner.spec.js').addTests({testRunner, expect});
new Reporter(testRunner, {
verbose: process.argv.includes('--verbose'),
summary: true,
showSlowTests: 0,
});
testRunner.run();