Keine Beschreibung

cases.spec.js 296B

12345678910
  1. import { test, expect } from '@playwright/test';
  2. test.beforeEach(async({ page }) => {
  3. await page.goto('/manage/cases');
  4. });
  5. test('should present initial case', async ({ page }) => {
  6. await expect(page.getByRole('gridcell', { name: '#1 - Initial Demo', exact: true })).toBeVisible();
  7. });