0e56aaf189
using "/// <reference" is incorrect because it makes our code non-portable. The correct solution is to provide these typings as ambient typings as an additional entry point - which we already do. Closes #8050
14 lines
397 B
TypeScript
14 lines
397 B
TypeScript
require('es6-shim/es6-shim.js');
|
|
require('reflect-metadata');
|
|
var testHelper = require('../../src/firefox_extension/lib/test_helper.js');
|
|
|
|
exports.config = {
|
|
specs: ['spec.js', 'sample_benchmark.js'],
|
|
|
|
framework: 'jasmine2',
|
|
|
|
jasmineNodeOpts: {showColors: true, defaultTimeoutInterval: 1200000},
|
|
|
|
getMultiCapabilities: function() { return testHelper.getFirefoxProfileWithExtension(); }
|
|
};
|