diff --git a/tests/internal-tests/src/__mocks__/@parcel/watcher.ts b/tests/internal-tests/src/__mocks__/@parcel/watcher.ts index 77994fd9..11131650 100644 --- a/tests/internal-tests/src/__mocks__/@parcel/watcher.ts +++ b/tests/internal-tests/src/__mocks__/@parcel/watcher.ts @@ -1,5 +1,3 @@ -console.log('aaaaaaaaaaaaa') - export async function getEventsSince(_dir: FilePath, _snapshot: FilePath, _opts?: Options): Promise { // not implemented return [] @@ -29,5 +27,7 @@ interface Event { type: EventType } class AsyncSubscription { - async unsubscribe(): Promise {} + async unsubscribe(): Promise { + // not implemented + } }