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
@Superskyyy I think that your expectation expect(rootMatch.backend).toEqual([]) is incorrect.
According to picomatch documentation - the underlying matching library - a pattern like **/*.tsx requires at least 1 path separator, so in your example root.tsx doesn't match that part of the pattern and after negation actually matches the pattern.
For example below, I added a
rootFiles
and expect it to match nothing, however, it actually matches theroot.tsx
.The text was updated successfully, but these errors were encountered: