restrucutred svelte examples

This commit is contained in:
Peter
2023-10-25 13:23:14 +02:00
parent 81ae72f497
commit 117b4a4cb6
6 changed files with 1399 additions and 441 deletions
+14
View File
@@ -0,0 +1,14 @@
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 }) => {});
});
});