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:
Dmitry Lemeshko 2019-07-04 18:36:04 +02:00 committed by GitHub
parent d49536699a
commit 321e2fb387
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 15 additions and 8 deletions

View file

@ -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';

View file

@ -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';

View file

@ -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');
});

View file

@ -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');
});

View file

@ -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'));

View file

@ -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');
});

View file

@ -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');

View file

@ -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'));