mirror of
https://github.com/nextcloud/server.git
synced 2026-06-29 12:24:50 +02:00
c45a5d4809
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
12 lines
364 B
TypeScript
12 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' }]],
|
|
}
|