mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
[ftr] enable visualRegression jobs (#42989)
* enable visualRegression jobs * skip the console and login visual tests
This commit is contained in:
parent
516b25c458
commit
c29a17ce3c
3 changed files with 5 additions and 4 deletions
|
@ -14,7 +14,7 @@ JOB:
|
|||
- kibana-ciGroup10
|
||||
- kibana-ciGroup11
|
||||
- kibana-ciGroup12
|
||||
# - kibana-visualRegression
|
||||
- kibana-visualRegression
|
||||
|
||||
# make sure all x-pack-ciGroups are listed in test/scripts/jenkins_xpack_ci_group.sh
|
||||
- x-pack-firefoxSmoke
|
||||
|
@ -28,7 +28,7 @@ JOB:
|
|||
- x-pack-ciGroup8
|
||||
- x-pack-ciGroup9
|
||||
- x-pack-ciGroup10
|
||||
# - x-pack-visualRegression
|
||||
- x-pack-visualRegression
|
||||
|
||||
# `~` is yaml for `null`
|
||||
exclude: ~
|
||||
|
|
|
@ -37,7 +37,7 @@ export default function({ getService, getPageObjects }: FtrProviderContext) {
|
|||
const visualTesting = getService('visualTesting');
|
||||
const PageObjects = getPageObjects(['common', 'console']);
|
||||
|
||||
describe('console app', function describeIndexTests() {
|
||||
describe.skip('console app', function describeIndexTests() {
|
||||
before(async () => {
|
||||
log.debug('navigateTo console');
|
||||
await PageObjects.common.navigateToApp('console');
|
||||
|
|
|
@ -12,7 +12,7 @@ export default function ({ getService, getPageObjects }) {
|
|||
const PageObjects = getPageObjects(['common', 'security']);
|
||||
|
||||
describe('Security', () => {
|
||||
describe('Login Page', () => {
|
||||
describe.skip('Login Page', () => {
|
||||
before(async () => {
|
||||
await esArchiver.load('empty_kibana');
|
||||
await PageObjects.security.logout();
|
||||
|
@ -28,6 +28,7 @@ export default function ({ getService, getPageObjects }) {
|
|||
|
||||
it('renders login page', async () => {
|
||||
await PageObjects.common.navigateToApp('login');
|
||||
|
||||
await retry.waitFor('login page visible', async () => (
|
||||
await testSubjects.exists('loginSubmit')
|
||||
));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue