2016-08-03 15:00:07 -07:00
|
|
|
/**
|
|
|
|
* @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
|
|
|
|
*/
|
|
|
|
|
2016-08-26 02:28:36 +02:00
|
|
|
require('core-js');
|
2015-06-08 13:51:10 -07:00
|
|
|
require('reflect-metadata');
|
2016-11-12 14:08:58 +01:00
|
|
|
const testHelper = require('../../src/firefox_extension/lib/test_helper.js');
|
2015-05-18 18:10:30 -07:00
|
|
|
|
|
|
|
exports.config = {
|
2015-06-08 13:51:10 -07:00
|
|
|
specs: ['spec.js', 'sample_benchmark.js'],
|
|
|
|
|
|
|
|
framework: 'jasmine2',
|
2015-05-18 18:10:30 -07:00
|
|
|
|
2015-06-08 13:51:10 -07:00
|
|
|
jasmineNodeOpts: {showColors: true, defaultTimeoutInterval: 1200000},
|
2015-05-18 18:10:30 -07:00
|
|
|
|
2015-06-08 13:51:10 -07:00
|
|
|
getMultiCapabilities: function() { return testHelper.getFirefoxProfileWithExtension(); }
|
2015-05-18 18:10:30 -07:00
|
|
|
};
|