mirror of
https://github.com/meteor/meteor.git
synced 2026-01-09 07:38:15 -05:00
22 lines
503 B
JavaScript
22 lines
503 B
JavaScript
Package.describe({
|
|
// These tests are in a separate package so that we can Npm.depend on
|
|
// parse5, a html parsing library.
|
|
summary: "Tests for the boilerplate-generator package",
|
|
version: '1.5.3',
|
|
documentation: null
|
|
});
|
|
|
|
Npm.depends({
|
|
parse5: '6.0.1'
|
|
});
|
|
|
|
Package.onTest(function (api) {
|
|
api.use('ecmascript');
|
|
api.use([
|
|
'tinytest',
|
|
'boilerplate-generator'
|
|
], 'server');
|
|
api.addFiles('web.browser-tests.js', 'server');
|
|
api.addFiles('web.cordova-tests.js', 'server');
|
|
});
|