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
Request URI matching is performed by node-match-path library. The handling of a trailing slash looks like that library's responsibility and I think it should be implemented in that library.
Current behavior
The following request handler:
Will not match
https://test.msw.io/
. The trailing slash if often appended automatically. For example, when performing:The request URI would be resolved to
https://test.msw.io/
(containing the trailing slash).Expected behavior
https://test.io
===https://test.io/
https://test.io/foo
===https://test.io/foo/
The text was updated successfully, but these errors were encountered: