mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
The 1.6.1-beta.16 release was DOA and should be avoided (if it can even be installed), due to an unfortunate interruption of my internet connection.
22 lines
371 B
JavaScript
22 lines
371 B
JavaScript
Package.describe({
|
|
summary: "Tiny testing framework",
|
|
version: '1.1.0-beta161.17'
|
|
});
|
|
|
|
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');
|
|
});
|