Skip to content

Commit 8e699b1

Browse files
committed
fix: remove console-log
1 parent 7573440 commit 8e699b1

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/subscribe.ts

-2
Original file line numberDiff line numberDiff line change
@@ -318,8 +318,6 @@ export const subscribe = (trigger: Trigger): Subscription => {
318318
initialRun: trigger.initialRun,
319319
persistent: trigger.persistent,
320320
teardown: async () => {
321-
console.log('TEARDOWN', outerActiveTask?.abortController);
322-
323321
if (outerTeardownInitiated) {
324322
log.warn('teardown already initiated');
325323

src/watch.test.ts

+1
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,7 @@ it.skip('ignores file change events if the file hash is the same; file existed b
138138
});
139139

140140
// https://github.com/gajus/turbowatch/issues/17
141+
// Not clear why this is failing in CI/CD.
141142
it.skip('does not log every file change', async () => {
142143
const onChange = sinon.stub();
143144

0 commit comments

Comments
 (0)