From ae9962b2aad431bfec7eb06fc66db602e7d5c7e5 Mon Sep 17 00:00:00 2001 From: Evan Hahn Date: Tue, 26 Nov 2024 16:55:38 -0600 Subject: [PATCH] chore: remove unnecessary ts-ignores (#37) --- test/observations-endpoint.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/test/observations-endpoint.js b/test/observations-endpoint.js index e8561d8..72f5eba 100644 --- a/test/observations-endpoint.js +++ b/test/observations-endpoint.js @@ -92,7 +92,6 @@ test('returning observations with fetchable attachments', async (t) => { const observations = await Promise.all([ (() => { /** @type {ObservationValue} */ - // @ts-ignore const noAttachments = { ...generateObservation(), attachments: [], @@ -100,7 +99,6 @@ test('returning observations with fetchable attachments', async (t) => { return project.observation.create(noAttachments) })(), (async () => { - // @ts-ignore const { docId } = await project.observation.create(generateObservation()) return project.observation.delete(docId) })(), @@ -120,7 +118,6 @@ test('returning observations with fetchable attachments', async (t) => { ), ]) /** @type {ObservationValue} */ - // @ts-ignore const withAttachment = { ...generateObservation(), attachments: [blobToAttachment(imageBlob), blobToAttachment(audioBlob)],