webextension-polyfill/test
Rob Wu 7ff6e8a1dc chore: Stop swallowing errors in .sh tests
The Bash shell scripts ignored errors in all but the last line.
This commit adds `set -eo pipefail` to fix the issue:

`set -e` causes the script to exit as soon as any command exits with a
non-zero exit code. When pipes are used, this flag only applies to the
last command in a pipe. The `set -o pipefail` option ensures that the
script is also exited with a non-zero exit code when any command in the
pipe fails.
2018-06-20 15:29:03 +02:00
..
fixtures test(browsers-smoketests): Run a set of smoke tests on both Chrome and Firefox 2018-06-02 20:59:46 +02:00
integration test(browsers-smoketests): Run a set of smoke tests on both Chrome and Firefox 2018-06-02 20:59:46 +02:00
.eslintrc fix: relax max-nested-callback eslint rules for tests. 2016-11-07 16:34:34 +01:00
mocha-babel.js test: Run a minimal set of tests from a test extension running on Chrome (#66) 2017-10-23 19:42:01 +02:00
run-browsers-smoketests.sh chore: Stop swallowing errors in .sh tests 2018-06-20 15:29:03 +02:00
run-module-bundlers-smoketests.sh chore: Stop swallowing errors in .sh tests 2018-06-20 15:29:03 +02:00
setup.js chore: Use `delete window.browser` in `setupTestDOMWindow` (#128) 2018-06-19 23:36:50 +02:00
test-async-functions.js fix: Add a new fallbackToNoCallback metadata property to customize the pageAction.show/hide wrappers behavior 2018-03-13 14:27:22 +01:00
test-browser-global.js test: run tests for the webpack and browserify bundled files on travis 2017-04-13 14:30:52 +02:00
test-proxied-properties.js fix: Lazily initialize API via the original target (#71) 2018-03-12 19:23:28 +01:00
test-runtime-onMessage.js feat: Added support for the sendResponse callback in the runtime.onMessage listeners (#97) 2018-05-14 20:38:21 +02:00