UNPKG

beater

Version:

beater: bouzuya's easy test runner. it is inspired by eater.

19 lines (14 loc) 410 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.run = void 0; var _beaterTapReporter = require("beater-tap-reporter"); var _runWithOptions = require("./run-with-options"); const run = tests => { const defaultOptions = { reporter: (0, _beaterTapReporter.reporter)() }; return (0, _runWithOptions.runWithOptions)(defaultOptions)(tests); }; exports.run = run;