Isolate renderer smoke from unit tests

This commit is contained in:
Sucukdeluxe
2026-08-13 21:57:36 +02:00
parent c359669ccf
commit f31cb4a5b2
3 changed files with 8 additions and 3 deletions
+3 -1
View File
@@ -179,7 +179,9 @@ const binaryExtensions = new Set(['.ico', '.png']);
const expectedScripts = {
start: 'electron .',
dev: 'node scripts/dev-runner.cjs',
test: 'node --test tests/*.test.js tests/ui-smoke.js',
test: 'npm run test:unit && npm run test:ui',
'test:unit': 'node --test tests/*.test.js',
'test:ui': 'node --test tests/ui-smoke.js',
'test:backup-api': 'npm --prefix services/backup-api test',
verify: 'npm run lint && npm test && npm run test:backup-api && npm audit --omit=dev',
lint: 'eslint .',