Files
meteor/packages/underscore-tests/package.js
2024-07-15 13:36:33 -04:00

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