From 38917d306bd511ddc342d8138c0ad6abcad7fbaf Mon Sep 17 00:00:00 2001 From: Johan Nyman Date: Thu, 12 Oct 2023 12:03:03 +0200 Subject: [PATCH] chore: lint --- tests/internal-tests/src/__mocks__/@parcel/watcher.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 + } }