From 37c13720e7587e52b8ce70b9558791d5bd3d865f Mon Sep 17 00:00:00 2001 From: Rajat Kumar Gupta <22871961+knightcube@users.noreply.github.com> Date: Wed, 25 Oct 2023 11:19:15 +0530 Subject: [PATCH] Added Unit Test for Menu.tsx (#154) * Added unit test for sidebar menu * Fixed Lint Errors --- tests/menu.spec.ts | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 tests/menu.spec.ts diff --git a/tests/menu.spec.ts b/tests/menu.spec.ts new file mode 100644 index 00000000..f8bc623c --- /dev/null +++ b/tests/menu.spec.ts @@ -0,0 +1,18 @@ +import { test, expect } from '@playwright/test' + +test('menu', async ({ page }) => { + await page.goto('/') + await expect(page.locator('h1')).toContainText('דאטאבוס') + const menuItemsInOrder = [ + 'מפעילי תח"צ לפי קיום נסיעות מתוכננות', + 'לוח זמנים היסטורי', + 'נסיעות שלא יצאו', + 'דפוסי נסיעות שלא יצאו', + 'מפה בזמן אמת', + 'מפה לפי קו', + 'אודות', + 'דיווח על באג', + 'לתרומות', + ] + await expect(page.locator('ul > li')).toContainText(menuItemsInOrder) +})