diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2022-12-05 16:17:49 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-05 16:17:49 -0500 |
commit | 2fab4583ef3db0a3d8438ffa07f9e64db8190433 (patch) | |
tree | 506d4a6c5dbddda1265bbc632bf0d4014f895ce4 /cli/build.rs | |
parent | 3863aaf8ae183685759bfdae037c36d05223e06f (diff) |
fix(test): improve how `--fail-fast` shuts down when hitting limit (#16956)
Closes #15650
Diffstat (limited to 'cli/build.rs')
-rw-r--r-- | cli/build.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cli/build.rs b/cli/build.rs index 4865cadb5..d87021a6d 100644 --- a/cli/build.rs +++ b/cli/build.rs @@ -130,6 +130,10 @@ mod ts { path_dts.join(format!("lib.{}.d.ts", name)).display() ); } + println!( + "cargo:rerun-if-changed={}", + cwd.join("js").join("40_testing.js").display() + ); // create a copy of the vector that includes any op crate libs to be passed // to the JavaScript compiler to build into the snapshot |