mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
33 lines
797 B
JavaScript
33 lines
797 B
JavaScript
Package.describe({
|
|
summary: "Run tests interactively in the browser",
|
|
version: '1.0.6'
|
|
});
|
|
|
|
Package.onUse(function (api) {
|
|
// XXX this should go away, and there should be a clean interface
|
|
// that tinytest and the driver both implement?
|
|
api.use('tinytest');
|
|
api.use('bootstrap@1.0.1');
|
|
api.use('underscore');
|
|
|
|
api.use('session');
|
|
api.use('reload');
|
|
|
|
api.use(['blaze', 'templating', 'spacebars',
|
|
'ddp', 'tracker'], 'client');
|
|
|
|
api.addFiles('diff_match_patch_uncompressed.js', 'client');
|
|
|
|
api.addFiles('diff_match_patch_uncompressed.js', 'client');
|
|
|
|
api.addFiles([
|
|
'driver.css',
|
|
'driver.html',
|
|
'driver.js'
|
|
], "client");
|
|
|
|
api.use('autoupdate', 'server', {weak: true});
|
|
api.use('random', 'server');
|
|
api.addFiles('autoupdate.js', 'server');
|
|
});
|