1
0
mirror of https://github.com/morris/vanilla-todo.git synced 2025-09-09 05:30:42 +02:00

set type module, simplify tests, update deps

This commit is contained in:
Morris Brodersen
2024-01-29 23:13:55 +01:00
parent a01590af93
commit 75ecd1d902
13 changed files with 113 additions and 120 deletions

View File

@@ -1,5 +1,5 @@
import { expect, test } from '@playwright/test';
import '../coverage.mjs';
import '../coverage.js';
test('Add custom to-do list', async ({ page }) => {
await page.goto('http://localhost:8080');

View File

@@ -1,5 +1,5 @@
import { expect, test } from '@playwright/test';
import '../coverage.mjs';
import '../coverage.js';
test("Add item to today's to-do list (Enter)", async ({ page }) => {
await page.goto('http://localhost:8080');

View File

@@ -1,5 +1,5 @@
import { expect, test } from '@playwright/test';
import '../coverage.mjs';
import '../coverage.js';
test('Delete custom to-do list', async ({ page }) => {
await page.goto('http://localhost:8080');

View File

@@ -1,5 +1,5 @@
import { expect, test } from '@playwright/test';
import '../coverage.mjs';
import '../coverage.js';
test('Edit custom to-do list title (Enter)', async ({ page }) => {
await page.goto('http://localhost:8080');