22 lines
601 B
TypeScript
22 lines
601 B
TypeScript
/**
|
|
* @license
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.io/license
|
|
*/
|
|
|
|
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(); }
|
|
};
|