/
githubmirror
/
Chart.js
Обзор
Документация
Войти
/
githubmirror
/
Chart.js
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/seed-reporter.cjs
13 строк
376 B
Dan Onoshko
feat: add ESM support (#10525)
05 авг 2022, 01:43
Не верифицирован
05 авг 2022, 01:43
ce375a6
Код
Авторство
О чём код?
const SeedReporter = function(baseReporterDecorator) { baseReporterDecorator(this); this.onBrowserComplete = function(browser, result) { if (result.order && result.order.random && result.order.seed) { this.write('%s: Randomized with seed %s\n', browser, result.order.seed); } }; }; module.exports = { 'reporter:jasmine-seed': ['type', SeedReporter] };