Skip to content

Commit

Permalink
fix tests for 1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
dburles committed Oct 23, 2015
1 parent 6d4fc0b commit f8966f1
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions package.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,15 @@ Package.onUse(function(api) {
api.use([
'underscore',
'mongo']);

api.addFiles('collection-helpers.js');
});

Package.onTest(function(api) {
api.use('tinytest');
api.use('dburles:collection-helpers');
api.use([
'tinytest',
'underscore',
'mongo',
'dburles:collection-helpers']);
api.addFiles('collection-helpers_tests.js');
});
});

0 comments on commit f8966f1

Please sign in to comment.