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([]); }); });