mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-11-28 22:03:30 +03:00
16 lines
398 B
TypeScript
16 lines
398 B
TypeScript
import { test, expect } from '@playwright/test';
|
|
|
|
test('has empty title', async ({ page }) => {
|
|
await page.goto('http://localhost:1420');
|
|
|
|
await expect(page).toHaveTitle('');
|
|
});
|
|
|
|
test('has text package.json', async ({ page }) => {
|
|
await page.goto('http://localhost:1420');
|
|
|
|
const listBox = page.getByRole('listbox').getByRole('button');
|
|
|
|
await expect(listBox).toHaveText('package.json');
|
|
});
|