Skip to content

Commit

Permalink
Added Unit Test for Menu.tsx (#154)
Browse files Browse the repository at this point in the history
* Added unit test for sidebar menu

* Fixed Lint Errors
  • Loading branch information
knightcube authored Oct 25, 2023
1 parent 30c074b commit 37c1372
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions tests/menu.spec.ts
Original file line number Diff line number Diff line change
@@ -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)
})

0 comments on commit 37c1372

Please sign in to comment.