mirror of
https://github.com/usebruno/bruno.git
synced 2026-06-11 09:51:30 +00:00
6 lines
200 B
TypeScript
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();
|
|
});
|