~repos /website

#astro#js#html#css

git clone https://pyrossh.dev/repos/website.git

木 Personal website of pyrossh. Built with astrojs, shiki, vite.



tests/rss.spec.ts



import { expect, test } from '@playwright/test';
test('/rss.xml is valid', async ({ page }) => {
const response = await page.goto('/rss.xml');
expect(response?.status()).toBe(200);
});