Skip to content

WIP: Moving Edge to BrowserStack #204

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

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 8 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,13 @@ env:
- secure: "fq/U7VDMWO8O8SnAQkdbkoSe2X92PVqg4d044HmRYVmcf6YbO48+xeGJ8yOk0pCBwl3ISO4Q2ot0x546kxfiYBuHkZetlngZxZCtQiFT9kyId8ZKcYdXaIW9OVdw3Gh3tQyUwDucfkVhqcs52D6NZjyE2aWZ4/d1V4kWRO/LMgo="
matrix:
# Order: a slower build first, so that we don't occupy an idle travis worker waiting for others to complete.
- MODE=e2e
- MODE=saucelabs_required
# TODO: Uncomment modes when done debugging
# - MODE=e2e
# - MODE=saucelabs_required
- MODE=browserstack_required
- MODE=dart_required DART_CHANNEL=stable DART_VERSION=$DART_STABLE_VERSION
- MODE=saucelabs_optional
- MODE=browserstack_optional
# - MODE=dart_required DART_CHANNEL=stable DART_VERSION=$DART_STABLE_VERSION
# - MODE=saucelabs_optional
# - MODE=browserstack_optional

matrix:
allow_failures:
Expand All @@ -66,7 +67,8 @@ before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- mkdir -p $LOGS_DIR
- npm run tslint
# TODO: Uncomment the following line when done debugging
# - npm run tslint
- "node ./scripts/ci/analyze-commits.js"


Expand Down
2 changes: 1 addition & 1 deletion test/browser-providers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ export const customLaunchers: { [name: string]: BrowserLauncherInfo } = {
version: '11'
},
'SL_EDGE': {
base: 'SauceLabs',
base: 'BrowserStack',
browserName: 'microsoftedge',
platform: 'Windows 10',
version: '20.10240'
Expand Down
3 changes: 2 additions & 1 deletion test/karma-test-shim.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
Error.stackTraceLimit = Infinity;

jasmine.DEFAULT_TIMEOUT_INTERVAL = 4000;
// Increased the timeout to 15s for Edge 13
jasmine.DEFAULT_TIMEOUT_INTERVAL = 15000;

__karma__.loaded = function() {};

Expand Down