mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
13 lines
342 B
JavaScript
13 lines
342 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',
|
|
deprecated: true
|
|
});
|
|
|
|
Package.onTest(function (api) {
|
|
api.use(['tinytest', 'underscore']);
|
|
api.addFiles(['common_test.js', 'each_test.js']);
|
|
});
|