mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
22 lines
360 B
JavaScript
22 lines
360 B
JavaScript
Package.describe({
|
|
summary: "Tiny testing framework",
|
|
version: '1.1.0'
|
|
});
|
|
|
|
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');
|
|
});
|