Skip to content

Commit

Permalink
feat: add tests for sitemap and robits.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
mbifulco committed Nov 23, 2024
1 parent a268036 commit ac416a8
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions tests/smoke.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,13 @@ test('tags smoke test', async ({ page }) => {
await page.goto('/tags');
expect(true).toBe(true);
});

test('sitemap smoke test', async ({ page }) => {
await page.goto('/sitemap.xml');
expect(true).toBe(true);
});

test('robots smoke test', async ({ page }) => {
await page.goto('/robots.txt');
expect(true).toBe(true);
});

0 comments on commit ac416a8

Please sign in to comment.