test(cli): clarify watcher exclusion coverage

This commit is contained in:
Miguel Ángel
2026-08-02 17:25:17 +00:00
parent bf739a4db2
commit 3eb7b1ffd5
+1 -1
View File
@@ -18,7 +18,7 @@ describe("shouldWatchProjectFile", () => {
expect(shouldWatchProjectFile("Dockerfile")).toBe(true);
});
it("skips generated and dependency directories excluded from signatures", () => {
it("skips generated and dependency directories", () => {
expect(shouldWatchProjectFile("node_modules/pkg/index.js")).toBe(false);
expect(shouldWatchProjectFile("renders/output.mp4")).toBe(false);
expect(shouldWatchProjectFile("dist/index.html")).toBe(false);