The presence of special symbols is an error.
See original GitHub issueexample:
test('test ^', () =>
{
console.log("hello ")
});
When you click Debug
.
The character ^
causes an error.
Console information:
Ran all test suites matching /PointInPolyline.test.ts/i with tests matching "test \\^".
Issue Analytics
- State:
- Created 5 years ago
- Reactions:1
- Comments:11 (4 by maintainers)
Top Results From Across the Web
Regular expression: check for the presence of special ...
I get the following error. This error is from the weblogic command window. I dont understand these special characters.
Read more >How to check if a string has ANY special characters? [closed]
!' I would like the program to return 'True', or for the input 'No Special Chars' it would return 'False'. By special character...
Read more >Check if a string consists only of special characters
Given string contains alphabets, number, and special characters. ... Regex to check if the string contains only special characters.
Read more >Special Characters Not Permitted in Filenames - IT Support - IUP
Instructors should be especially aware that the use of illegal characters in the Course Files or Course Content areas will cause similar errors...
Read more >Unable to load data in target due to presence of ... - Search
... to load data in target due to presence of special characters and spaces in the column name. The following database errors occurred:...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I’m running into what might be the same thing when trying to debug a test with a backtick in the name:
hmm… yup, backtick embedded in a test name is a problem. Looks like it needs to be handled differently than the normal regex escape…