Files
meteor/packages/test-in-browser/package.js
denihs 5fa502edd4 - using denque package
- changing blaze version on test-in-browser to blaze@2.5.0 to avoid constraints error
2023-01-18 15:53:57 -04:00

41 lines
751 B
JavaScript

Package.describe({
summary: "Run tests interactively in the browser",
version: '1.3.3',
documentation: null
});
Npm.depends({
'bootstrap': '4.3.1',
});
Package.onUse(function (api) {
api.use('ecmascript');
// XXX this should go away, and there should be a clean interface
// that tinytest and the driver both implement?
api.use('tinytest');
api.use('session');
api.use('reload');
api.use([
'webapp',
'blaze@2.5.0',
'templating@1.3.2',
'spacebars@1.0.15',
'jquery@3.0.0',
'ddp',
'tracker',
], 'client');
api.addFiles([
'driver.html',
'driver.js',
'driver.css',
], "client");
api.use("random", "server");
api.mainModule("server.js", "server");
api.export('runTests');
});