We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7573440 commit 8e699b1Copy full SHA for 8e699b1
src/subscribe.ts
@@ -318,8 +318,6 @@ export const subscribe = (trigger: Trigger): Subscription => {
318
initialRun: trigger.initialRun,
319
persistent: trigger.persistent,
320
teardown: async () => {
321
- console.log('TEARDOWN', outerActiveTask?.abortController);
322
-
323
if (outerTeardownInitiated) {
324
log.warn('teardown already initiated');
325
src/watch.test.ts
@@ -138,6 +138,7 @@ it.skip('ignores file change events if the file hash is the same; file existed b
138
});
139
140
// https://github.com/gajus/turbowatch/issues/17
141
+// Not clear why this is failing in CI/CD.
142
it.skip('does not log every file change', async () => {
143
const onChange = sinon.stub();
144
0 commit comments