/
githubmirror
/
meteor
Обзор
Документация
Войти
/
githubmirror
/
meteor
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
devel
packages/tinytest-harness/package.js
20 строк
494 B
denihs
Meteor version to 3.0 :comet:
15 июл 2024, 20:36
Не верифицирован
15 июл 2024, 20:36
b494499
Код
Авторство
О чём код?
Package.describe({ name: 'tinytest-harness', version: '0.0.5', summary: 'In development, lets your app define Tinytests, run them and see results', documentation: null }); Package.onUse(function(api) { // XXX this needs to change. We'll probably have `testOnly` a la // `debugOnly`. if (global.testCommandMetadata) { api.imply('tinytest'); api.imply('test-helpers'); api.imply('test-in-browser'); api.use('test-in-browser'); api.export('runTests'); } });