nextcloud/tests/playwright/merge.config.ts
Ferdinand Thiessen c45a5d4809
test: create basic Playwright test infrastructure
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
2026-06-10 09:49:04 +02:00

11 lines
364 B
TypeScript

/*!
* SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
// Needed to merge multiple Playwright reports
// when they are ran on self-hosted and github runners (different test directories are used)
export default {
testDir: 'tests/playwright/e2e',
reporter: [['html', { open: 'never' }]],
}