mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
## Summary With Firefox update to v113 on our CI workers, we noticed that tests are run slower and more often fail with timeouts. Unfortunately our auto-skip functionality skip the test suite completely, meaning it won't run on Chrome as well. This PR unskips the firefox failed test to run on Chrome, I also fix the labels for some suites to run only sub set of tests for now.
35 lines
879 B
JavaScript
35 lines
879 B
JavaScript
/*
|
|
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
|
* or more contributor license agreements. Licensed under the Elastic License
|
|
* 2.0; you may not use this file except in compliance with the Elastic License
|
|
* 2.0.
|
|
*/
|
|
|
|
export default async function ({ readConfigFile }) {
|
|
const chromeConfig = await readConfigFile(require.resolve('./config.base.js'));
|
|
|
|
return {
|
|
...chromeConfig.getAll(),
|
|
|
|
testFiles: [
|
|
require.resolve('./apps/canvas'),
|
|
require.resolve('./apps/infra'),
|
|
require.resolve('./apps/security'),
|
|
require.resolve('./apps/spaces'),
|
|
require.resolve('./apps/watcher'),
|
|
],
|
|
|
|
browser: {
|
|
type: 'firefox',
|
|
},
|
|
|
|
suiteTags: {
|
|
include: ['includeFirefox'],
|
|
exclude: ['skipFirefox'],
|
|
},
|
|
|
|
junit: {
|
|
reportName: 'Firefox XPack UI Functional Tests',
|
|
},
|
|
};
|
|
}
|