mirror of
https://github.com/mattermost/mattermost.git
synced 2026-04-13 21:17:49 -04:00
* test: increase parallel tests and removed smoke tests both in cypress and playwright * add duration and retest info * indicate overall, first-pass and re-run run and test durations
13 lines
497 B
JavaScript
13 lines
497 B
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
// Configuration for merging sharded blob reports via:
|
|
// npx playwright merge-reports --config merge.config.mjs ./all-blob-reports/
|
|
|
|
export default {
|
|
reporter: [
|
|
['html', {open: 'never', outputFolder: './results/reporter'}],
|
|
['json', {outputFile: './results/reporter/results.json'}],
|
|
['junit', {outputFile: './results/reporter/results.xml'}],
|
|
],
|
|
};
|