mirror of
https://github.com/usebruno/bruno.git
synced 2026-06-24 05:05:39 +00:00
- Improved the Codegen setup - Removed the app-launch related boilerplate from tests - Enable recording mode by default - Option to provide the test file name to save the recording - Added GitHub workflow to run Playwright tests with Electron in Headless mode(mocking display using `xvfb`).
5 lines
170 B
TypeScript
5 lines
170 B
TypeScript
import { test, expect } from '../playwright';
|
|
|
|
test('test-app-start', async ({ page }) => {
|
|
await expect(page.getByRole('button', { name: 'bruno' })).toBeVisible();
|
|
}); |