2015-07-30 19:50:13 +00:00
|
|
|
/*****************************************************************************
|
|
|
|
* Open MCT Web, Copyright (c) 2014-2015, United States Government
|
|
|
|
* as represented by the Administrator of the National Aeronautics and Space
|
|
|
|
* Administration. All rights reserved.
|
|
|
|
*
|
|
|
|
* Open MCT Web is licensed under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0.
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
|
|
|
*
|
|
|
|
* Open MCT Web includes source code licensed under additional open source
|
|
|
|
* licenses. See the Open Source Licenses file (LICENSES.md) included with
|
|
|
|
* this source code distribution or the Licensing information page available
|
|
|
|
* at runtime from the About dialog for additional information.
|
|
|
|
*****************************************************************************/
|
2015-07-30 18:15:03 +00:00
|
|
|
/*global exports,process*/
|
|
|
|
|
2015-07-29 19:55:15 +00:00
|
|
|
// conf.js
|
|
|
|
exports.config = {
|
2015-07-30 18:15:03 +00:00
|
|
|
allScriptsTimeout: 500000,
|
2015-08-07 18:28:18 +00:00
|
|
|
jasmineNodeOpts: {defaultTimeoutInterval: 360000},
|
2015-07-30 18:15:03 +00:00
|
|
|
seleniumAddress: 'http://localhost:4444/wd/hub',
|
2015-08-07 18:28:18 +00:00
|
|
|
//specs: ['StressTestCarrot.js'],
|
2015-07-30 18:15:03 +00:00
|
|
|
specs: [
|
2015-08-12 18:57:56 +00:00
|
|
|
// 'create/CreateActivity.js',
|
|
|
|
// 'delete/DeleteActivity.js',
|
|
|
|
// 'create/CreateActivityMode.js',
|
|
|
|
// 'delete/DeleteActivityMode.js',
|
|
|
|
// 'create/CreateClock.js',
|
|
|
|
// 'delete/DeleteClock.js',
|
2015-07-30 18:15:03 +00:00
|
|
|
'create/CreateDisplay.js',
|
2015-08-07 18:28:18 +00:00
|
|
|
'delete/DeleteDisplay.js',
|
2015-07-30 18:15:03 +00:00
|
|
|
'create/CreateFolder.js',
|
2015-08-07 18:28:18 +00:00
|
|
|
'delete/DeleteFolder.js',
|
2015-08-12 18:57:56 +00:00
|
|
|
// 'create/CreateTelemetry.js',
|
|
|
|
// 'delete/DeleteTelemetry.js',
|
|
|
|
// 'create/CreateTimeline.js',
|
|
|
|
// 'delete/DeleteTimeline.js',
|
|
|
|
// 'create/CreateTimer.js',
|
|
|
|
// 'delete/DeleteTimer.js',
|
2015-07-30 18:15:03 +00:00
|
|
|
'create/CreateWebPage.js',
|
2015-08-07 18:28:18 +00:00
|
|
|
'delete/DeleteWebPage.js',
|
2015-07-30 18:15:03 +00:00
|
|
|
'UI/Fullscreen.js',
|
|
|
|
'create/CreateButton.js',
|
2015-08-12 18:57:56 +00:00
|
|
|
//"UI/DragDrop.js",
|
|
|
|
"UI/NewWindow.js"
|
|
|
|
//'UI/InfoBubble.js',
|
|
|
|
//'UI/RightClick.js'
|
2015-07-29 19:55:15 +00:00
|
|
|
],
|
2015-07-30 18:15:03 +00:00
|
|
|
capabilities: {
|
|
|
|
'browserName': 'chrome', // or 'safari'
|
|
|
|
'chromeOptions': {}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// Allow specifying binary location as an environment variable,
|
|
|
|
// for cases where Chrome is not installed in a usual location.
|
2015-08-12 17:28:20 +00:00
|
|
|
if (process.env.CHROME_BIN) {
|
2015-07-30 18:15:03 +00:00
|
|
|
exports.config.capabilities.chromeOptions.binary =
|
2015-08-12 17:28:20 +00:00
|
|
|
process.env.CHROME_BIN;
|
2015-07-29 19:55:15 +00:00
|
|
|
}
|