Files
meteor/packages/tinytest/package.js
Ben Newman 4f5cb1d7a0 Bump package versions for 1.3-beta.16 release.
What happened to beta.13, beta.14, and beta.15? All unfortunately suffered
from problems that made it either impossible or unwise to upgrade to those
versions.
2016-03-09 12:13:18 -05:00

23 lines
405 B
JavaScript

Package.describe({
summary: "Tiny testing framework",
version: '1.0.7-beta.16'
});
Package.onUse(function (api) {
api.use([
'ejson',
'underscore',
'random',
'ddp',
'mongo',
'check'
]);
api.addFiles('tinytest.js');
api.addFiles('model.js');
api.addFiles('tinytest_client.js', 'client');
api.addFiles('tinytest_server.js', 'server');
api.export('Tinytest');
});