tweak test name

This commit is contained in:
Trevor Fitzgerald
2026-05-16 20:10:20 -04:00
committed by Thibault Duplessis
parent 14f33232e2
commit f8b5ed97c0
+1 -1
View File
@@ -17,7 +17,7 @@ test('can message their student', async ({ page }) => {
await expect(page.locator('group').getByText(msg)).toBeVisible(); await expect(page.locator('group').getByText(msg)).toBeVisible();
}); });
test('cannot message a kid who is not their student', async ({ page }) => { test('cannot message an account who is not their student', async ({ page }) => {
await page.goto('/inbox/kid'); await page.goto('/inbox/kid');
await expect(page.getByText("Kid doesn't accept new messages")).toBeVisible(); await expect(page.getByText("Kid doesn't accept new messages")).toBeVisible();
}); });