Files
meteor/packages/underscore-tests/package.js
Nacho Codoñer ca3b9015c9 Fix underscore functionality changed recently and provide tests (#13225)
* revert where definition since it caused breaking changes in apps and packages

* bump version

* fix

* provide missing tests for modified behaviors

* include tests for added/modified underscore behavior with expectations
2024-07-15 17:02:45 +02:00

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