Files
meteor/packages/tinytest/package.js
David Glasser af06112044 templating implies spark and meteor: generated code needs them.
also finish getting rid of deprecated startup package, and some other minor
packaging cleanups to templating.
2013-07-26 19:34:45 -07:00

23 lines
554 B
JavaScript

Package.describe({
summary: "Tiny testing framework",
internal: true
});
Package.on_use(function (api) {
api.use('underscore', ['client', 'server']);
api.use('random', ['client', 'server']);
api.export('Tinytest');
api.add_files('tinytest.js', ['client', 'server']);
api.use('livedata', ['client', 'server']);
api.use('mongo-livedata', ['client', 'server']);
api.add_files('model.js', ['client', 'server']);
api.add_files('tinytest_client.js', 'client');
api.add_files('tinytest_server.js', 'server');
api.use('check');
});