We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad14a45 commit 2f29b4bCopy full SHA for 2f29b4b
watch/test/watch.test.ts
@@ -48,6 +48,7 @@ describe("watch", () => {
48
});
49
50
it("ignores files in .gitignore", function* () {
51
+ expect.assertions(1);
52
let fixture = yield* useFixture();
53
54
let processes = yield* inspector(
@@ -64,6 +65,8 @@ describe("watch", () => {
64
65
yield* fixture.write("dist/artifact.txt", "this file was built again");
66
67
yield* processes.expectNoRestart();
68
+
69
+ expect(processes.starts).toHaveLength(1);
70
71
72
it.skip("ignores files in a .gitignore that is in a parent directory", function* () {
0 commit comments