mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
21 lines
494 B
JavaScript
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');
|
|
}
|
|
});
|