From e008f781353418048809789e2b2ce132b2fbefea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Bajto=C5=A1?= Date: Thu, 7 Mar 2024 17:09:37 +0100 Subject: [PATCH] test: measurement.indexResult (#57) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Enable assertion that was commented out until we improve spark-api. Signed-off-by: Miroslav Bajtoš --- test/integration.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/integration.js b/test/integration.js index 3dc555c..afbb051 100644 --- a/test/integration.js +++ b/test/integration.js @@ -24,8 +24,7 @@ test('retrieval check for our CID', async () => { const assertProp = (prop, expectedValue) => assertEquals(m[prop], expectedValue, prop) assertProp('cid', KNOWN_CID) - // TODO - spark-api does not record this field yet - // assertProp('indexerResult', 'OK') + assertProp('indexerResult', 'OK') assertProp('providerAddress', '/dns/frisbii.fly.dev/tcp/443/https') assertProp('protocol', 'http') assertProp('timeout', false)