Files
bruno/tests/start/app-open.spec.ts
2025-09-07 03:05:11 +05:30

6 lines
200 B
TypeScript

import { test, expect } from '../../playwright';
test('Check if the logo on top left is visible', async ({ page }) => {
await expect(page.getByRole('button', { name: 'bruno' })).toBeVisible();
});