diff options
| author | Yuki Okushi <jtitor@2k36.org> | 2022-05-14 13:42:54 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-05-14 13:42:54 +0900 |
| commit | ec14d946ae0bfffebf15aa2b53504debfedfcb39 (patch) | |
| tree | e84a39362f36eafe47665ea508aa3996e6c70e1d | |
| parent | e6fc0c4b43da08b7889b0450de5f3599b1f6b237 (diff) | |
| parent | 5ec5a762e9a6cd2369c02211f38ada9a55e1d12b (diff) | |
| download | rust-ec14d946ae0bfffebf15aa2b53504debfedfcb39.tar.gz rust-ec14d946ae0bfffebf15aa2b53504debfedfcb39.zip | |
Rollup merge of #97018 - GuillaumeGomez:fail-on-js-error, r=notriddle
Ensure that test fail if a JS error occurs Fixes #96902. r? ``@notriddle``
| -rw-r--r-- | src/ci/docker/host-x86_64/x86_64-gnu-tools/browser-ui-test.version | 2 | ||||
| -rw-r--r-- | src/tools/rustdoc-gui/tester.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/ci/docker/host-x86_64/x86_64-gnu-tools/browser-ui-test.version b/src/ci/docker/host-x86_64/x86_64-gnu-tools/browser-ui-test.version index 899f24fc754..f514a2f0bd0 100644 --- a/src/ci/docker/host-x86_64/x86_64-gnu-tools/browser-ui-test.version +++ b/src/ci/docker/host-x86_64/x86_64-gnu-tools/browser-ui-test.version @@ -1 +1 @@ -0.9.0 \ No newline at end of file +0.9.1 \ No newline at end of file diff --git a/src/tools/rustdoc-gui/tester.js b/src/tools/rustdoc-gui/tester.js index d75884567af..8532410a1bf 100644 --- a/src/tools/rustdoc-gui/tester.js +++ b/src/tools/rustdoc-gui/tester.js @@ -138,7 +138,7 @@ async function main(argv) { try { // This is more convenient that setting fields one by one. let args = [ - "--variable", "DOC_PATH", opts["doc_folder"], + "--variable", "DOC_PATH", opts["doc_folder"], "--enable-fail-on-js-error", ]; if (opts["debug"]) { debug = true; |
