Files
meteor/packages/underscore-tests/package.js
2023-06-19 11:07:52 -03:00

12 lines
314 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: '2.0.0-alpha300.10',
});
Package.onTest(function (api) {
api.use(['tinytest', 'underscore']);
api.addFiles('each_test.js');
});