Skip to content

Conversation

@ZoffixUser4092
Copy link

@ZoffixUser4092 ZoffixUser4092 commented Nov 6, 2025

Description

Open in GitHub Codespaces

Changelog

CHANGELOG entry:

Related issues

Fixes:

Manual testing steps

  1. Go to this page...

Screenshots/Recordings

Before

After

Pre-merge author checklist

Pre-merge reviewer checklist

  • I've manually tested the PR (e.g. pull and build branch, run the app, test code being changed).
  • I confirm that this PR addresses all acceptance criteria described in the ticket it closes and includes the necessary testing evidence such as recordings and or screenshots.

Note

Cursor Bugbot is generating a summary for commit a342dcf. Configure here.

@github-actions
Copy link
Contributor

github-actions bot commented Nov 6, 2025

CLA Signature Action:

Thank you for your submission, we really appreciate it. We ask that you read and sign our Contributor License Agreement before we can accept your contribution. You can sign the CLA by just by adding a comment to this pull request with this exact sentence:

I have read the CLA Document and I hereby sign the CLA

By commenting with the above message you are agreeing to the terms of the CLA. Your account will be recorded as agreeing to our CLA so you don't need to sign it again for future contributions to this repository.

0 out of 1 committers have signed the CLA.
@ZoffixUser4092

],
coverageDirectory: './coverage/integration',
coveragePathIgnorePatterns: ['.stories.*', '.snap', '.test.(js|ts|tsx)'],
coveragePathIgnorePatterns: ['.stories.*', '.snap', '.test\\.(js|ts|tsx)$'],
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bug: Unescaped Dot Causes Incorrect Coverage Matching Pattern

The regex pattern '.test\.(js|ts|tsx)$' has an unescaped dot at the beginning. The first dot matches any character instead of a literal dot, which could cause unintended files to be excluded from coverage. The pattern should be '\.test\.(js|ts|tsx)$' to correctly match only files with the literal pattern ".test.js", ".test.ts", or ".test.tsx".

Fix in Cursor Fix in Web

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants