/
githubmirror
/
meteor
Обзор
Документация
Войти
/
githubmirror
/
meteor
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
devel
tools/tool-testing/test-failure.js
8 строк
213 B
Jesse Rosenberger
Decompose self-test logic into separate files.
14 ноя 2017, 16:55
Не верифицирован
14 ноя 2017, 16:55
d5ff826
Код
Авторство
О чём код?
// Exception representing a test failure export default class TestFailure { constructor(reason, details) { this.reason = reason; this.details = details || {}; this.stack = (new Error()).stack; } }