Files
meteor/packages/test-in-console/package.js
2014-10-13 14:09:37 -07:00

19 lines
511 B
JavaScript

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