Files
xyflow/tests/playwright/e2e/nodes.spec.ts
T
2023-10-25 13:23:14 +02:00

15 lines
356 B
TypeScript

import { test, expect } from '@playwright/test';
import { FRAMEWORK } from './constants';
test.describe('NODES', () => {
test.beforeEach(async ({ page }) => {
// Go to the starting url before each test.
await page.goto('/tests/nodes');
});
test.describe('selection', () => {
test('selecting a node', async ({ page }) => {});
});
});