mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
11 lines
241 B
JavaScript
11 lines
241 B
JavaScript
Package.describe({
|
|
summary: "Tiny testing framework",
|
|
internal: true
|
|
});
|
|
|
|
Package.on_use(function (api) {
|
|
// XXX figure out how to do server-side testing
|
|
api.use('underscore', 'client');
|
|
api.add_files('tinytest.js', 'client');
|
|
});
|