From f03f2b466e92012a61ad4aad2b2b781d12aeee91 Mon Sep 17 00:00:00 2001 From: Luka Dornhecker Date: Thu, 6 Feb 2025 11:08:34 +0100 Subject: [PATCH] add TODO for type fix --- next/test/validation/json_schema_test_suite.test.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/next/test/validation/json_schema_test_suite.test.ts b/next/test/validation/json_schema_test_suite.test.ts index cf2634a..70cf519 100644 --- a/next/test/validation/json_schema_test_suite.test.ts +++ b/next/test/validation/json_schema_test_suite.test.ts @@ -41,6 +41,7 @@ describe('JSON Schema Test Suite', () => { describe(testSchema.description, () => { for (const test of testSchema.tests) { it(test.description, () => { + // TODO: properly extend the expect interface expect(testSchema.schema).toBeValid(test.data, test.valid) }) }