chore: Minor Applitools enhancements (#21239)

* Enhance logging

* Update conf
This commit is contained in:
Geido 2022-08-29 19:38:13 +03:00 committed by GitHub
parent 1d3a805a61
commit 710a8ce5c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 5 deletions

View File

@ -20,9 +20,10 @@ module.exports = {
apiKey: process.env.APPLITOOLS_API_KEY,
batchId: process.env.APPLITOOLS_BATCH_ID,
batchName: process.env.APPLITOOLS_BATCH_NAME,
browser: [{ width: 1000, height: 660, name: 'chrome' }],
browser: [{ width: 1920, height: 1080, name: 'chrome' }],
failCypressOnDiff: false,
isDisabled: false,
showLogs: false,
testConcurrency: 10,
ignoreCaret: true,
};

View File

@ -33,7 +33,7 @@ describe('charts list view', () => {
cy.eyesOpen({
testName: 'Charts list-view',
});
cy.eyesCheckWindow('Charts loaded');
cy.eyesCheckWindow('Charts list-view loaded');
});
it('should load the Charts card list', () => {
@ -41,6 +41,6 @@ describe('charts list view', () => {
cy.eyesOpen({
testName: 'Charts card-view',
});
cy.eyesCheckWindow('Charts loaded');
cy.eyesCheckWindow('Charts card-view loaded');
});
});

View File

@ -33,7 +33,7 @@ describe('dashboard list view', () => {
cy.eyesOpen({
testName: 'Dashboards list-view',
});
cy.eyesCheckWindow('Dashboards loaded');
cy.eyesCheckWindow('Dashboards list-view loaded');
});
it('should load the Dashboards card list', () => {
@ -41,6 +41,6 @@ describe('dashboard list view', () => {
cy.eyesOpen({
testName: 'Dashboards card-view',
});
cy.eyesCheckWindow('Dashboards loaded');
cy.eyesCheckWindow('Dashboards card-view loaded');
});
});