Skip to content

Commit

Permalink
chore: Minor Applitools enhancements (#21239)
Browse files Browse the repository at this point in the history
* Enhance logging

* Update conf
  • Loading branch information
geido authored Aug 29, 2022
1 parent 1d3a805 commit 710a8ce
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion superset-frontend/cypress-base/applitools.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
};
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@ 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', () => {
cy.get('[aria-label="card-view"]').click();
cy.eyesOpen({
testName: 'Charts card-view',
});
cy.eyesCheckWindow('Charts loaded');
cy.eyesCheckWindow('Charts card-view loaded');
});
});
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@ 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', () => {
cy.get('[aria-label="card-view"]').click();
cy.eyesOpen({
testName: 'Dashboards card-view',
});
cy.eyesCheckWindow('Dashboards loaded');
cy.eyesCheckWindow('Dashboards card-view loaded');
});
});

0 comments on commit 710a8ce

Please sign in to comment.