kibana/x-pack/test/functional/config.firefox.js
Dzmitry Lemechko 5d4eec5131
unskip tests for chrome, fix tags (#158405)
## 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.
2023-05-26 09:19:53 +01:00

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',
},
};
}