From 0126c9622bc1f9af5c2e2ab1f9a26fb44c35f903 Mon Sep 17 00:00:00 2001 From: Leonardo Ortiz Date: Fri, 26 Apr 2024 18:45:24 -0300 Subject: [PATCH] log --- scripts/webframeworks-deploy-tests/tests.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/scripts/webframeworks-deploy-tests/tests.ts b/scripts/webframeworks-deploy-tests/tests.ts index 386e4261055..59ea0e6b294 100644 --- a/scripts/webframeworks-deploy-tests/tests.ts +++ b/scripts/webframeworks-deploy-tests/tests.ts @@ -484,6 +484,13 @@ describe("webframeworks", function (this) { ]; expect(unmatchedFiles, "matchedFiles").to.eql([]); + console.log({ + files, + EXPECTED_FILES: EXPECTED_FILES.filter((it) => !files.includes(it)), + EXPECTED_PATTERNS: EXPECTED_PATTERNS.filter( + (it) => !files.some((file) => !!file.match(it)), + ), + }); expect(unmatchedExpectations, "unmatchedExpectations").to.eql([]); }); });