Began implementing RSE Minecraft server items.

This commit is contained in:
2024-10-18 09:16:57 +00:00
commit 1f20da27ad
43 changed files with 5671 additions and 0 deletions

6
tests/test.js Normal file
View File

@@ -0,0 +1,6 @@
import { expect, test } from '@playwright/test';
test('home page has expected h1', async ({ page }) => {
await page.goto('/');
await expect(page.locator('h1')).toBeVisible();
});