Skip to content

Commit

Permalink
Fixed Lint Errors
Browse files Browse the repository at this point in the history
  • Loading branch information
knightcube committed Oct 25, 2023
1 parent 3e4fd1a commit cb03561
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/menu.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { test, expect } from '@playwright/test'

test('menu', async ({ page }) => {
await page.goto('/')
await expect(page.locator('h1')).toContainText('דאטאבוס');
await expect(page.locator('h1')).toContainText('דאטאבוס')
const menuItemsInOrder = [
'מפעילי תח"צ לפי קיום נסיעות מתוכננות',
'לוח זמנים היסטורי',
Expand All @@ -14,5 +14,5 @@ test('menu', async ({ page }) => {
'דיווח על באג',
'לתרומות',
]
await expect(page.locator('ul > li')).toContainText(menuItemsInOrder);
await expect(page.locator('ul > li')).toContainText(menuItemsInOrder)
})

0 comments on commit cb03561

Please sign in to comment.