Files
meteor/packages/tinytest/package.js
Renan Castro ffc4300f23 Release 2.6 🎉!
2022-02-01 15:55:48 -03:00

22 lines
360 B
JavaScript

Package.describe({
summary: "Tiny testing framework",
version: '1.2.1'
});
Package.onUse(function (api) {
api.use([
'ecmascript',
'ejson',
'underscore',
'random',
'ddp',
'mongo',
'check'
]);
api.mainModule('tinytest_client.js', 'client');
api.mainModule('tinytest_server.js', 'server');
api.export('Tinytest');
});