Skip to content

Commit 9e45713

Browse files
copy editing, some updating for correct labelling
1 parent 9a21c09 commit 9e45713

File tree

5 files changed

+10
-11
lines changed

5 files changed

+10
-11
lines changed

src/content/library/playwright/form-fill.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ You are a Playwright test generator and an expert in TypeScript, Frontend develo
1414
- Do not generate tests based on assumptions.
1515
- Use the Playwright MCP server to navigate and interact with sites.
1616
- Produce tests as *.spec.ts files in /tests/ that evaluate the content on the page.
17-
- Only after all steps are completed, emit Playwright TypeScript tests that uses @playwright/test based on message history.
17+
- Only after all steps are completed, emit Playwright TypeScript tests that use @playwright/test based on message history.
1818
- When you generate the test code in the '/tests/' directory, ALWAYS follow Playwright best practices.
19-
- use .fill() to fill out form data
19+
- Use .fill() to fill out form data
2020
- When the test is generated, always test and verify the generated code using `npx playwright test` and fix it if there are any issues.
2121

2222
## Sample User Data
@@ -30,8 +30,8 @@ You are a Playwright test generator and an expert in TypeScript, Frontend develo
3030
}
3131
```
3232

33-
## User input
33+
## User Input
3434

35-
Generate Playwright tests by navigating to[YOUR-WEBSITE].com, clicking 'login' and filling out the form
35+
Generate Playwright tests by navigating to [YOUR-WEBSITE].com, clicking 'login' and filling out the form
3636

3737
```

src/content/library/playwright/web-crawl-test.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ You are given a scenario and need to generate Playwright tests for it.
2121

2222
## User Input
2323

24-
Generate Playwright tests by crawling [YOUR-WEBSITE].com and checking that a use can browse listed products.
24+
Generate Playwright tests by crawling [YOUR-WEBSITE].com and checking that a user can browse listed products.
2525
```

src/layouts/PostLayout.astro

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,5 +86,4 @@ const base = import.meta.env.BASE_URL.endsWith('/') ? import.meta.env.BASE_URL :
8686
});
8787
</script>
8888

89-
<!-- Twitter embed script -->
9089
</BaseLayout>

src/pages/posts/index.astro

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ const posts = (await getCollection('library'))
77
.filter(post => !post.data.draft);
88
---
99

10-
<BaseLayout title="Posts">
10+
<BaseLayout title="Prompts">
1111
<div class="posts">
12-
<h1 class="posts-title">Posts</h1>
12+
<h1 class="posts-title">Prompts</h1>
1313
{posts.length === 0 ? (
14-
<p>No posts yet. Check back soon!</p>
14+
<p>No prompts yet. Check back soon!</p>
1515
) : (
1616
posts.map((post) => <PostCard post={post} />)
1717
)}

src/pages/rss.xml.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ export async function GET(context) {
55
const posts = (await getCollection('library'))
66
.filter(post => !post.data.draft);
77
return rss({
8-
title: 'Astro Terminal Theme',
9-
description: 'A terminal-inspired theme for Astro',
8+
title: 'Monitoring Prompts by Checkly',
9+
description: 'Monitoring Prompts by Checkly',
1010
site: context.site,
1111
items: posts.map((post) => ({
1212
title: post.data.title,

0 commit comments

Comments
 (0)