Files
meteor/packages/test-in-console/package.js
David Glasser 4daaa76b12 METEOR@1.0.4
2015-03-17 13:06:07 -07:00

19 lines
507 B
JavaScript

Package.describe({
summary: "Run tests noninteractively, with results going to the console.",
version: '1.0.5'
});
Package.onUse(function (api) {
api.use(['tinytest', 'underscore', 'random', 'ejson', 'check']);
api.use('http', 'server');
api.export('TEST_STATUS', 'client');
api.addFiles(['driver.js'], "client");
api.addFiles(['reporter.js'], "server");
// This is to be run by phantomjs, not as part of normal package code.
api.addFiles('runner.js', 'server', {isAsset: true});
});