Files
meteor/packages/spacebars-tests/package.js
2013-10-04 12:36:52 -07:00

20 lines
472 B
JavaScript

Package.describe({
summary: "Additional tests for Spacebars"
});
// These tests are in a separate package to avoid a circular dependency
// between the `spacebars` and `templating` packages.
Package.on_test(function (api) {
api.use('underscore');
api.use('spacebars');
api.use('tinytest');
api.use('jquery');
api.use('test-helpers');
api.use('templating', 'client');
api.add_files([
'template_tests.html',
'template_tests.js'
], 'client');
});