Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion docs/.vitepress/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,10 @@ export default defineConfig({
{ text: "Utility Types", link: "/utility-types" },
{
text: "API Testing",
items: [{ text: "Fetch Adapter", link: "/api/fetch-adapter" }],
items: [
{ text: "Route Interceptor", link: "/api/route-interceptor" },
{ text: "Fetch Adapter", link: "/api/fetch-adapter" },
],
},
{
text: "Snapshot Testing",
Expand Down
8 changes: 4 additions & 4 deletions docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ hero:
link: https://github.com/cronn/playwright-utils

features:
- title: API Testing
details: Use Playwright's request context as a fetch implementation to send requests of an API client through Playwright.
link: /api/fetch-adapter
- title: Network Interceptors
- title: Route Interceptor
details: Abort, mock, modify or delay the requests of a page for the duration of a single action instead of the whole test.
link: /api/route-interceptor
- title: Fetch Adapter
details: Use Playwright's request context as a fetch implementation to send requests of an API client through Playwright.
link: /api/fetch-adapter
- title: Snapshot Testing
details: Mask non-deterministic values like IDs, timestamps or base URLs in a consistent format to keep file snapshots stable.
link: /snapshots/normalizers
Expand Down
Loading