Left: | ||
Right: |
LEFT | RIGHT |
---|---|
1 /* | 1 /* |
2 * This file is part of Adblock Plus <https://adblockplus.org/>, | 2 * This file is part of Adblock Plus <https://adblockplus.org/>, |
3 * Copyright (C) 2006-present eyeo GmbH | 3 * Copyright (C) 2006-present eyeo GmbH |
4 * | 4 * |
5 * Adblock Plus is free software: you can redistribute it and/or modify | 5 * Adblock Plus is free software: you can redistribute it and/or modify |
6 * it under the terms of the GNU General Public License version 3 as | 6 * it under the terms of the GNU General Public License version 3 as |
7 * published by the Free Software Foundation. | 7 * published by the Free Software Foundation. |
8 * | 8 * |
9 * Adblock Plus is distributed in the hope that it will be useful, | 9 * Adblock Plus is distributed in the hope that it will be useful, |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
(...skipping 21 matching lines...) Expand all Loading... | |
32 .then(() => driver.executeAsyncScript(realScript, scriptArgs)) | 32 .then(() => driver.executeAsyncScript(realScript, scriptArgs)) |
33 .then(() => driver.executeScript("return window._consoleLogs;")) | 33 .then(() => driver.executeScript("return window._consoleLogs;")) |
34 .then(result => | 34 .then(result => |
35 { | 35 { |
36 console.log(`\nBrowser tests in ${name}\n`); | 36 console.log(`\nBrowser tests in ${name}\n`); |
37 for (let item of result.log) | 37 for (let item of result.log) |
38 console.log(item); | 38 console.log(item); |
39 return driver.quit().then(() => | 39 return driver.quit().then(() => |
40 { | 40 { |
41 if (result.failures != 0) | 41 if (result.failures != 0) |
42 return Promise.reject(name); | 42 throw name; |
Sebastian Noack
2018/09/21 14:22:21
Nit: You can just use throw here.
hub
2018/09/21 15:39:35
Done.
| |
43 }); | 43 }); |
44 }, error => | 44 }, error => |
45 { | 45 { |
46 return driver.quit().then(() => Promise.reject(error)); | 46 // This could be replaced by Promise.finally() |
Sebastian Noack
2018/09/21 14:22:20
Please leave a comment that this code should be re
Sebastian Noack
2018/09/21 14:22:21
Now, we call driver.quit() twice if there are any
hub
2018/09/21 15:39:35
No we don't. We are on the rejection handler for t
hub
2018/09/21 15:39:35
Done.
Sebastian Noack
2018/09/21 15:58:46
You are right. I misread the code, I thought we ar
| |
47 // once we require NodeJS >= 10 | |
48 return driver.quit().then(() => | |
49 { | |
50 throw error; | |
51 }); | |
47 }); | 52 }); |
48 } | 53 } |
49 | 54 |
50 module.exports.executeScript = executeScript; | 55 module.exports.executeScript = executeScript; |
LEFT | RIGHT |