layout.spec.ts 205 B

123456
  1. import { test, expect } from '@playwright/test';
  2. test('page render test', async ({ page }) => {
  3. await page.goto('http://localhost:3000');
  4. await page.waitForSelector('.gedit-playground-pipeline');
  5. });