layout.spec.ts 297 B

1234567891011
  1. /**
  2. * Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
  3. * SPDX-License-Identifier: MIT
  4. */
  5. import { test } from '@playwright/test';
  6. test('page render test', async ({ page }) => {
  7. await page.goto('http://localhost:3000');
  8. await page.waitForSelector('.gedit-playground-pipeline');
  9. });