From c11fa71caacdaeae92397d9b73a63a5e4ce6833c Mon Sep 17 00:00:00 2001 From: Mihaly Lengyel Date: Sun, 27 Oct 2024 20:22:38 +0100 Subject: [PATCH] test: add exception for changes introduced in #946 --- test/userContext.test.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/userContext.test.js b/test/userContext.test.js index c9f03becd..c5b0d69a1 100644 --- a/test/userContext.test.js +++ b/test/userContext.test.js @@ -556,6 +556,11 @@ describe(`userContext: ${printPath("[test/userContext.test.js]")}`, function () shouldNotContain: ["userContext: Record", "userContext?: UserContext"], canContain: [{ text: "userContext?: Record", count: 1 }], }, + { + fileName: "lib/ts/recipe/thirdparty/types.ts", + shouldNotContain: ["userContext: Record", "userContext?: Record"], + canContain: [{ text: "userContext?: UserContext", count: 4 }], + }, ]; let fileExceptionFound = false;