mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
Run more tests in firefox (#40140)
* [smoke suite] add code search tests
* run FF xpack tests 5x times
* [smoke suite] add more x-pack tests
* Revert "run FF xpack tests 5x times"
This reverts commit c59046f43d
.
This commit is contained in:
parent
d49536699a
commit
321e2fb387
8 changed files with 15 additions and 8 deletions
|
@ -23,7 +23,8 @@ export default function exploreRepositoryFunctionalTests({
|
|||
|
||||
const FIND_TIME = config.get('timeouts.find');
|
||||
|
||||
describe('Explore Repository', () => {
|
||||
describe('Explore Repository', function() {
|
||||
this.tags('smoke');
|
||||
describe('Explore a repository', () => {
|
||||
const repositoryListSelector = 'codeRepositoryList codeRepositoryItem';
|
||||
|
||||
|
|
|
@ -15,7 +15,8 @@ export default function searchFunctonalTests({ getService, getPageObjects }: Tes
|
|||
const log = getService('log');
|
||||
const PageObjects = getPageObjects(['common', 'header', 'security', 'code', 'home']);
|
||||
|
||||
describe('Search', () => {
|
||||
describe('Search', function() {
|
||||
this.tags('smoke');
|
||||
const symbolTypeaheadListSelector = 'codeTypeaheadList-symbol codeTypeaheadItem';
|
||||
const fileTypeaheadListSelector = 'codeTypeaheadList-file codeTypeaheadItem';
|
||||
const searchResultListSelector = 'codeSearchResultList codeSearchResultFileItem';
|
||||
|
|
|
@ -15,7 +15,8 @@ export default ({ getPageObjects, getService }: KibanaFunctionalTestDefaultProvi
|
|||
const infraSourceConfigurationFlyout = getService('infraSourceConfigurationFlyout');
|
||||
const pageObjects = getPageObjects(['infraLogs']);
|
||||
|
||||
describe('Logs Page', () => {
|
||||
describe('Logs Page', function() {
|
||||
this.tags('smoke');
|
||||
before(async () => {
|
||||
await esArchiver.load('empty_kibana');
|
||||
});
|
||||
|
|
|
@ -15,7 +15,8 @@ export default ({ getPageObjects, getService }: KibanaFunctionalTestDefaultProvi
|
|||
const infraSourceConfigurationFlyout = getService('infraSourceConfigurationFlyout');
|
||||
const pageObjects = getPageObjects(['common', 'infraHome']);
|
||||
|
||||
describe('Infrastructure Snapshot Page', () => {
|
||||
describe('Infrastructure Snapshot Page', function() {
|
||||
this.tags('smoke');
|
||||
before(async () => {
|
||||
await esArchiver.load('empty_kibana');
|
||||
});
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
export default function ({ loadTestFile }) {
|
||||
describe('logstash', function () {
|
||||
this.tags('ciGroup2');
|
||||
this.tags(['ciGroup2', 'smoke']);
|
||||
|
||||
loadTestFile(require.resolve('./pipeline_list'));
|
||||
loadTestFile(require.resolve('./pipeline_create'));
|
||||
|
|
|
@ -11,7 +11,8 @@ export default function({ getService }: KibanaFunctionalTestDefaultProviders) {
|
|||
const esArchiver = getService('esArchiver');
|
||||
const ml = getService('ml');
|
||||
|
||||
describe('page navigation', () => {
|
||||
describe('page navigation', function() {
|
||||
this.tags('smoke');
|
||||
before(async () => {
|
||||
await esArchiver.load('empty_kibana');
|
||||
});
|
||||
|
|
|
@ -11,7 +11,8 @@ export default function ({ getService, getPageObjects }) {
|
|||
const PageObjects = getPageObjects(['security']);
|
||||
const testSubjects = getService('testSubjects');
|
||||
|
||||
describe('Security', () => {
|
||||
describe('Security', function () {
|
||||
this.tags('smoke');
|
||||
describe('Login Page', () => {
|
||||
before(async () => {
|
||||
await esArchiver.load('empty_kibana');
|
||||
|
|
|
@ -20,7 +20,8 @@ export default function spaceSelectorFunctonalTests({
|
|||
'spaceSelector',
|
||||
]);
|
||||
|
||||
describe('Spaces', () => {
|
||||
describe('Spaces', function() {
|
||||
this.tags('smoke');
|
||||
describe('Space Selector', () => {
|
||||
before(async () => await esArchiver.load('spaces/selector'));
|
||||
after(async () => await esArchiver.unload('spaces/selector'));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue