Files
meteor/packages/underscore-tests/package.js
David Glasser 4daaa76b12 METEOR@1.0.4
2015-03-17 13:06:07 -07:00

12 lines
301 B
JavaScript

Package.describe({
// These tests can't be directly in the underscore packages since
// Tinytest depends on underscore
summary: "Tests for the underscore package",
version: '1.0.3'
});
Package.onTest(function (api) {
api.use(['tinytest', 'underscore']);
api.addFiles('each_test.js');
});