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