darabos's picture
Use Aria labels for links in tests.
04c6ee3
raw
history blame contribute delete
262 Bytes
import { useLocation } from "react-router";
export function usePath() {
// Decode special characters. Drop trailing slash. (Some clients add it, e.g. Playwright.)
const path = decodeURIComponent(useLocation().pathname).replace(/[/]$/, "");
return path;
}