Files
meteor/packages/underscore-tests/package.js
Ben Newman 4f5cb1d7a0 Bump package versions for 1.3-beta.16 release.
What happened to beta.13, beta.14, and beta.15? All unfortunately suffered
from problems that made it either impossible or unwise to upgrade to those
versions.
2016-03-09 12:13:18 -05:00

12 lines
309 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.5-beta.16'
});
Package.onTest(function (api) {
api.use(['tinytest', 'underscore']);
api.addFiles('each_test.js');
});