Files
meteor/packages/tinytest-harness/package.js

21 lines
494 B
JavaScript

Package.describe({
name: 'tinytest-harness',
version: '0.0.4',
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');
}
});