-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
E2etest concurrency #982
E2etest concurrency #982
Conversation
nightwatch.browserstack.json
Outdated
@@ -38,8 +38,8 @@ | |||
"browserstack.local": true, | |||
"browserstack.debug": true, | |||
"browserstack.selenium_version" : "2.53.0", | |||
"browserstack.user": "${BROWSERSTACK_USERNAME}", | |||
"browserstack.key": "${BROWSERSTACK_KEY}" | |||
"browserstack.user": "${BROWSERSTACK_USERNAME1}", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Was this intentional change?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nopes. I will update this.
@@ -4,9 +4,9 @@ var util = require('../../common/utils.js'); | |||
module.exports = { | |||
'adequant ad rendering' : function (browser) { | |||
browser | |||
.url('http://localhost:9999/test/spec/e2e/gpt-examples/all_bidders_instant_load.html') | |||
.url('http://an.localhost:9999/test/spec/e2e/gpt-examples/all_bidders_instant_load.html') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should make a note about setting up this in hosts
file
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes would that to instructions.
LGTM |
* Integration testing concurrency fix * Integration testing concurrency fix * selenium does not work in iPhone browserstack * removing iPhone from test report page * corrected env name * Remove IE9Win7 test from nightwatch tests
…18.0 to aolgithub-master * commit '2881f03dd76bfcf484fbfeaf0f9e1000b383d20d': Added adapters in aolPartnersIds.json. Added changelog entry. Prebid 0.20.0 Release Remove test that intermittently fails unit tests (prebid#1020) Create bids for requests without mutating ad units (prebid#1019) Use optimize js to improve parse time (https://github.com/nolanlawson/optimize-js) (prebid#1018) Fixes for Centro adapter (prebid#992) adbund adapter (prebid#932) Fix bug with supporting non-cpm dealId bids. (prebid#1006) Added referrer parameter (prebid#966) Support Video for GetIntent adapter (prebid#987) Currency support for SmartAdServer adapter (prebid#979) Deal support for SmartAdServer adapter (prebid#978) Skip test causing build failures (prebid#997) E2etest concurrency (prebid#982) Add ThoughtLeadr adapter (prebid#894) Increment Pre Version
…18.0 to master * commit '2881f03dd76bfcf484fbfeaf0f9e1000b383d20d': Added adapters in aolPartnersIds.json. Added changelog entry. Prebid 0.20.0 Release Remove test that intermittently fails unit tests (prebid#1020) Create bids for requests without mutating ad units (prebid#1019) Use optimize js to improve parse time (https://github.com/nolanlawson/optimize-js) (prebid#1018) Fixes for Centro adapter (prebid#992) adbund adapter (prebid#932) Fix bug with supporting non-cpm dealId bids. (prebid#1006) Added referrer parameter (prebid#966) Support Video for GetIntent adapter (prebid#987) Currency support for SmartAdServer adapter (prebid#979) Deal support for SmartAdServer adapter (prebid#978) Skip test causing build failures (prebid#997) E2etest concurrency (prebid#982) Add ThoughtLeadr adapter (prebid#894) Increment Pre Version
Type of change
Description of change
End 2 End testing using nightwatch and browserstack was having issues running in parallel. With this fix we are now running only 2 browsers at a time. To test this following steps must be followed
./BrowserStackLocal --key <your-browserstack-key> --force-local
Other information