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

Update integration tests to use latest Chrome, Firefox and Chrome Dev #19392

Merged
merged 25 commits into from
Nov 29, 2018
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
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
Prev Previous commit
Next Next commit
Set process exit code for timedExecOrDie
  • Loading branch information
estherkim committed Nov 28, 2018
commit 5676797a31cb772116dd508edd88ea19044064ad
4 changes: 2 additions & 2 deletions build-system/tasks/runtime-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -563,7 +563,7 @@ async function runTests() {
log(
red('ERROR:'),
yellow('Karma test failed with exit code ' + processExitCode));
process.exit(processExitCode);
process.exitCode = processExitCode;
}

/**
Expand All @@ -585,7 +585,7 @@ async function runTests() {
configBatch.browsers.length + ' Sauce Labs browser(s)...'));
estherkim marked this conversation as resolved.
Show resolved Hide resolved
const batchExitCode = await createKarmaServer(configBatch);
if (batchExitCode) { // test failed
processExitCode += ' ' + batchExitCode + ' (Batch # ' + batch + '); ';
processExitCode += ' ' + batchExitCode + ' (Batch # ' + batch + ');';
}
estherkim marked this conversation as resolved.
Show resolved Hide resolved
startIndex = batch * batchSize;
batch++;
Expand Down