Files
mattermost-mobile/detox/e2e/config.js
2020-11-17 14:20:58 -03:00

29 lines
919 B
JavaScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
const platform = process.env.IOS ? 'ios' : 'android';
module.exports = {
setupFilesAfterEnv: ['./init.js'],
testEnvironment: './environment',
testRunner: 'jest-circus/runner',
testTimeout: 120000,
testRegex: '\\.e2e\\.js$',
reporters: [
'../node_modules/detox/runners/jest/streamlineReporter',
['jest-junit', {
suiteName: 'Mobile App E2E with Detox and Jest',
outputDirectory: './artifacts',
outputName: `${platform}-junit.xml`,
uniqueOutputName: false,
}],
['jest-html-reporters', {
pageTitle: 'Mobile App E2E with Detox and Jest',
publicPath: './artifacts',
filename: `${platform}-report.html`,
expand: false,
}],
],
verbose: true,
};