You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Somewhat related to #1, but this doesn't involve resolving variable names.
When writing tests, I often end up with long test titles. If I break up the test titles into multiple lines of concatenated strings, this plugin fails to match the test to the snapshot. With prettier defaulting to 80 chars per line, it's common in my project to split a test title.
it(`should error if the sun is blue and the moon is green but user doesn't have`+` binoculars or a telescope`,async()=>{
...
expect(response).toMatchSnapshot();// fails to show corresponding snapshot});
The text was updated successfully, but these errors were encountered:
Somewhat related to #1, but this doesn't involve resolving variable names.
When writing tests, I often end up with long test titles. If I break up the test titles into multiple lines of concatenated strings, this plugin fails to match the test to the snapshot. With prettier defaulting to 80 chars per line, it's common in my project to split a test title.
The text was updated successfully, but these errors were encountered: