mirror of
https://github.com/mattermost/mattermost.git
synced 2026-02-03 20:40:00 -05:00
* Fix testcases failing Webpack compilation * Fix E2E test report message for webhook * Demote more unstable tests * Fix playwright reporting message, better test demotion --------- Co-authored-by: Mattermost Build <build@mattermost.com>
12 lines
339 B
JavaScript
12 lines
339 B
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
const RESULTS_DIR = 'results';
|
|
const MOCHAWESOME_REPORT_DIR = 'results/mochawesome-report';
|
|
const AD_CYCLE_FILE = 'results/ad_cycle.json';
|
|
|
|
module.exports = {
|
|
MOCHAWESOME_REPORT_DIR,
|
|
RESULTS_DIR,
|
|
AD_CYCLE_FILE,
|
|
};
|