Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removed IE from functional tests, it crashes often #2624

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@ jobs:
- stage: test-functional
env: BROWSER=edge
script: npm run test-functional
- stage: test-functional
env: BROWSER=ie
script: npm run test-functional
#- stage: test-functional
# env: BROWSER=ie
# script: npm run test-functional
12 changes: 1 addition & 11 deletions test/functional/config/browsers/windows.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,6 @@ define(function () {
os_version: '10'
};

var IE11_CONFIG = {
browserName: 'internet explorer',
platform: 'WINDOWS',
os: 'WINDOWS',
os_version: '10',
version: '11'
};

var EDGE_CONFIG = {
browserName: 'MicrosoftEdge',
platform: 'WINDOWS'
Expand All @@ -27,12 +19,10 @@ define(function () {
};

return {
all: [CHROME_CONFIG, IE11_CONFIG, EDGE_CONFIG, FIREFOX_CONFIG],
all: [CHROME_CONFIG, EDGE_CONFIG, FIREFOX_CONFIG],

chrome: [CHROME_CONFIG],

ie: [IE11_CONFIG],

edge: [EDGE_CONFIG],

firefox: [FIREFOX_CONFIG]
Expand Down
6 changes: 0 additions & 6 deletions test/functional/tools/Win10nodeConfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,6 @@
"plateform":"WINDOWS",
"seleniumProtocol":"WebDriver"
},
{
"browserName":"internet explorer",
"maxInstances":5,
"plateform":"WINDOWS",
"seleniumProtocol":"WebDriver"
},
{
"browserName":"MicrosoftEdge",
"maxInstances":5,
Expand Down