ci: Enable Playwright tests in PRs (#17238)

This commit is contained in:
shortstacked
2025-07-16 09:05:11 +01:00
committed by GitHub
parent 4bba13ccb8
commit e63ae55a0c
15 changed files with 436 additions and 267 deletions

View File

@@ -1,7 +1,10 @@
/* eslint-disable import-x/no-default-export */
import { currentsReporter } from '@currents/playwright';
import type { Project } from '@playwright/test';
import { defineConfig } from '@playwright/test';
import currentsConfig from './currents.config';
/*
* Mode-based Test Configuration
*
@@ -105,6 +108,7 @@ export default defineConfig({
['html', { open: 'never' }],
['json', { outputFile: 'test-results.json' }],
['blob'],
currentsReporter(currentsConfig),
]
: [['html']],