Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 7a2df6d

Browse files
committedDec 23, 2024·
Update dependencies and recompile DLLs
1 parent 5325bed commit 7a2df6d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎bootstrap/src/component/__tests__/Entrypoint.test.jsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -80,12 +80,12 @@ describe("<Entrypoint />", () => {
8080
<Entrypoint>
8181
<Link to={props.href}>Navigate</Link>
8282
<Routes>
83-
<Route path="/grand">
83+
<Route path="grand">
8484
<Route path="parent">
8585
<Route path="child" element={<span data-testid="RouteMatchLeft" />} />
8686
</Route>
8787
</Route>
88-
<Route path="/sibling" element={<span data-testid="RouteMatchRight" />} />
88+
<Route path="sibling" element={<span data-testid="RouteMatchRight" />} />
8989
<Route path="*" element={<span data-testid="RouteNoMatch" />} />
9090
</Routes>
9191
</Entrypoint>

0 commit comments

Comments
 (0)
Please sign in to comment.