mirror of
https://github.com/usebruno/bruno.git
synced 2026-06-11 09:51:30 +00:00
10 lines
452 B
TypeScript
10 lines
452 B
TypeScript
import { test, expect } from '../../playwright';
|
|
|
|
test('Check if the workspace name is visible in the sidebar', async ({ page }) => {
|
|
// Wait for the app to be loaded
|
|
await page.locator('[data-app-state="loaded"]').waitFor({ timeout: 30000 });
|
|
|
|
// Wait for the workspace name container to be visible (contains workspace name like "My Workspace" or "Default Workspace")
|
|
await expect(page.locator('.workspace-name-container')).toBeVisible();
|
|
});
|