11 lines
295 B
JavaScript
11 lines
295 B
JavaScript
|
// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
|
||
|
// See LICENSE.txt for license information.
|
||
|
|
||
|
const MOCHAWESOME_REPORT_DIR = './mochawesome-report';
|
||
|
const PERFORMANCE_REPORT_DIR = './performance';
|
||
|
|
||
|
module.exports = {
|
||
|
MOCHAWESOME_REPORT_DIR,
|
||
|
PERFORMANCE_REPORT_DIR,
|
||
|
};
|