Files
meteor/packages/underscore-tests/package.js
2024-05-21 10:56:04 -04:00

12 lines
310 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.9-rc300.2',
});
Package.onTest(function (api) {
api.use(['tinytest', 'underscore']);
api.addFiles('each_test.js');
});