summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorHasanAlrimawi <141642411+HasanAlrimawi@users.noreply.github.com>2024-11-16 16:59:31 +0200
committerGitHub <noreply@github.com>2024-11-16 15:59:31 +0100
commitabf06eb87f10ebed93b39948213dccfe086bd0fa (patch)
treef67a1d5f6f0ba8ec7ff666f1029fa225978b242c /tests
parent768c5ea2bb2a927455577a29f0761425593aea98 (diff)
feat(watch): log which file changed on HMR or watch change (#25801)
Closes #25504
Diffstat (limited to 'tests')
-rw-r--r--tests/integration/watcher_tests.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/integration/watcher_tests.rs b/tests/integration/watcher_tests.rs
index e8f264632..055e46af9 100644
--- a/tests/integration/watcher_tests.rs
+++ b/tests/integration/watcher_tests.rs
@@ -55,7 +55,7 @@ where
let mut str = String::new();
while let Some(t) = next_line(stderr_lines).await {
let t = util::strip_ansi_codes(&t);
- if t.starts_with("Watcher File change detected") {
+ if t.starts_with("Watcher Restarting! File change detected") {
continue;
}
if t.starts_with("Watcher") {