|
@@ -10,7 +10,7 @@ Package.describe({
|
|
|
|
|
|
// By default, Meteor will default to using README.md for documentation.
|
|
// By default, Meteor will default to using README.md for documentation.
|
|
// To avoid submitting documentation, set this field to null.
|
|
// To avoid submitting documentation, set this field to null.
|
|
- // documentation: 'README.md'
|
|
|
|
|
|
+ documentation: 'README.md'
|
|
});
|
|
});
|
|
|
|
|
|
Package.onUse(function(api) {
|
|
Package.onUse(function(api) {
|
|
@@ -26,7 +26,10 @@ Package.onUse(function(api) {
|
|
});
|
|
});
|
|
|
|
|
|
Package.onTest(function(api) {
|
|
Package.onTest(function(api) {
|
|
- api.use('tinytest');
|
|
|
|
- api.use('fgm:errors');
|
|
|
|
- api.addFiles('errors-tests.js');
|
|
|
|
|
|
+ var where = 'client';
|
|
|
|
+
|
|
|
|
+ api.use('fgm:errors', where);
|
|
|
|
+ api.use(['tinytest', 'test-helpers'], where);
|
|
|
|
+
|
|
|
|
+ api.addFiles('errors_tests.js', where);
|
|
});
|
|
});
|