mirror of
https://github.com/wharfkit/website.git
synced 2026-07-23 10:53:29 +00:00
3c830c3f6c
* first pass at custom docs * comparison to markdoc * Updated editor configuration files * add plugins for table of contents * Changed to default from editor-configs * reformat world * Formatting for everything * More world formatting * fix 500 error on reload * finish merge * add flexible docs sections * add sort order for documentation sections * update docs styling * add article filter * fix lockfile * add responsive navigation on mobile * fix toc column * fix collapse icon * center images * fix element semantics * add keyboard shortcuts to filter * add support for breadcrumbs * documentation styling * move testing docs * integrate docs repo * remove testing docs * fix table layouts for few columns * add styling to all docs pages * modify routing * enable ssr for documentation * update docs * fix formatting for long strings in code blocks * sticky toc * render toc server side * fix bad urls * temporarily revert to ua defined margins * fix mobile layout * update spacing for mobile * Updated submodule * add page title to toc * add seo description and title for doc pages * add section landing pages * update layout and spacing * fix accidental collapse * source github commits for update log --------- Co-authored-by: Aaron Cox <aaron@greymass.com>
12 lines
381 B
TypeScript
12 lines
381 B
TypeScript
import { expect, test } from "@playwright/test"
|
|
|
|
test("index page has expected h1", async ({ page }) => {
|
|
await page.goto("/")
|
|
expect(await page.textContent("h1")).toBe("Shipping great code starts with a solid platform.")
|
|
})
|
|
|
|
test("progress page has title", async ({ page }) => {
|
|
await page.goto("/progress/updates/1")
|
|
expect(await page.textContent("h2")).toBeDefined()
|
|
})
|