Rollup merge of #111459 - GuillaumeGomez:update-browser-ui-test, r=notriddle
Update browser-ui-test version to 0.16.0 This new version brings one major improvement: it allows to use the original color format in checks (I plan to slowly continue converting colors back to their "original" format, ie the one used in CSS). It also provides some improvements in some commands API. r? `````@notriddle`````
This commit is contained in:
commit
eead6f4703
17 changed files with 70 additions and 81 deletions
|
|
@ -1 +1 @@
|
|||
0.15.0
|
||||
0.16.0
|
||||
|
|
@ -143,7 +143,7 @@ async function runTests(opts, framework_options, files, results, status_bar, sho
|
|||
const tests_queue = [];
|
||||
|
||||
for (const testPath of files) {
|
||||
const callback = runTest(testPath, framework_options)
|
||||
const callback = runTest(testPath, {"options": framework_options})
|
||||
.then(out => {
|
||||
const [output, nb_failures] = out;
|
||||
results[nb_failures === 0 ? "successful" : "failed"].push({
|
||||
|
|
@ -323,6 +323,7 @@ async function main(argv) {
|
|||
if (results.failed.length > 0 || results.errored.length > 0) {
|
||||
process.exit(1);
|
||||
}
|
||||
process.exit(0);
|
||||
}
|
||||
|
||||
main(process.argv);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue