Files
meteor/packages/tinytest-harness/package.js
Leonardo Venturini 9b1c18b30f Meteor version to 3.0-rc.4 ☄️
2024-06-12 09:20:56 -04:00

21 lines
502 B
JavaScript

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