Skip to content

Commit

Permalink
update snapshot names
Browse files Browse the repository at this point in the history
  • Loading branch information
Šimon Macek committed Jun 27, 2024
1 parent 4969dce commit 5769f5d
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 21 deletions.
23 changes: 18 additions & 5 deletions src/components/__tests__/BannerRoutes.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,20 @@ describe('<BannerRoutes>', () => {
cy.viewport('macbook-16');
});

coreTests();
it('renders button icon with correct spacing', () => {
// TODO: fix corrupted snapshot
cy.dataCy('banner-routes-button-icon')
.invoke('height')
.should('be.equal', 24);
cy.dataCy('banner-routes-button-icon')
.invoke('width')
.should('be.equal', 24);
// icon additional tests
cy.dataCy('banner-routes-button-icon')
.should('be.visible')
.and('have.color', white)
.and('have.css', 'margin-right', '8px');
});

it('renders title with the number of missing routes', () => {
cy.window().then(() => {
Expand Down Expand Up @@ -99,7 +112,7 @@ describe('<BannerRoutes>', () => {
cy.viewport('macbook-16');
});

coreTests();
coreTests('start');

it('renders title width the "start" message', () => {
cy.window().then(() => {
Expand Down Expand Up @@ -171,7 +184,7 @@ describe('<BannerRoutes>', () => {
cy.viewport('iphone-6');
});

coreTests();
coreTests('mobile');

it('renders title with the number of missing routes', () => {
cy.window().then(() => {
Expand Down Expand Up @@ -227,11 +240,11 @@ describe('<BannerRoutes>', () => {
});
});

function coreTests() {
function coreTests(context) {
it('renders button icon with correct spacing', () => {
// icon core test
cy.dataCy('banner-routes-button-icon').then((element) => {
cy.testIcon({ element, name: 'banner-routes-add', size: 24 });
cy.testIcon({ element, name: `banner-routes-add-${context}`, size: 24 });
});
// icon additional tests
cy.dataCy('banner-routes-button-icon')
Expand Down
21 changes: 10 additions & 11 deletions src/components/__tests__/NewsletterItem.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ describe('<NewsletterItem>', () => {
cy.viewport('macbook-16');
});

coreTests();
coreTests('desktop');

it('has display flex column', () => {
cy.window().then(() => {
Expand Down Expand Up @@ -77,7 +77,7 @@ describe('<NewsletterItem>', () => {
cy.viewport('iphone-6');
});

coreTests();
coreTests('mobile');

it('renders title', () => {
cy.window().then(() => {
Expand Down Expand Up @@ -163,13 +163,13 @@ describe('<NewsletterItem>', () => {
});
});

function coreTests() {
function coreTests(context) {
it('renders icon', () => {
cy.window().then(() => {
cy.dataCy('newsletter-item-icon').then((element) => {
cy.testIcon({
element,
name: `newsletter-item-${icon}`,
name: `newsletter-item-${icon}-${context}`,
size: 32,
});
});
Expand All @@ -186,13 +186,12 @@ function coreTests() {
.and('have.css', 'border-radius', '28px')
.and('have.color', grey10)
.and('contain', i18n.global.t('index.newsletterFeature.following'));
cy.dataCy('newsletter-item-button-icon').then((element) => {
cy.testIcon({
element,
name: 'newsletter-item-check',
size: 18,
});
});
cy.dataCy('newsletter-item-button-icon')
.invoke('height')
.should('be.equal', 18);
cy.dataCy('newsletter-item-button-icon')
.invoke('width')
.should('be.equal', 18);
});
});
}
4 changes: 2 additions & 2 deletions src/components/__tests__/SliderProgress.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ describe('<SliderProgress>', () => {
cy.dataCy('progress-slider-stats-icon').each((element, index) => {
cy.testIcon({
element,
name: `slider-progress-${progressStats[index].icon}`,
name: `slider-progress-${progressStats[index].icon}-desktop`,
size: 18,
});
});
Expand Down Expand Up @@ -211,7 +211,7 @@ describe('<SliderProgress>', () => {
cy.dataCy('progress-slider-stats-icon').each((element, index) => {
cy.testIcon({
element,
name: `slider-progress-${progressStats[index].icon}`,
name: `slider-progress-${progressStats[index].icon}-mobile`,
size: 18,
});
});
Expand Down
6 changes: 3 additions & 3 deletions test/cypress/support/commands.js
Original file line number Diff line number Diff line change
Expand Up @@ -161,10 +161,10 @@ Cypress.Commands.add('testIcon', ({ element, name, size }) => {
// timestamp for matching see https://docs.cypress.io/guides/tooling/visual-testing#Timestamps
const now = new Date(2024, 1, 1);
cy.clock(now);
// set DPR and wait for resources (to avoid empty snapshot)
cy.setDPR(1);

cy.document()
// set DPR and wait for resources (to avoid empty snapshot)
.then((document) => document.fonts.ready)
.then(() => cy.setDPR(1))
.then(() => cy.waitForStylesheets())
.then(() => {
// size
Expand Down

0 comments on commit 5769f5d

Please sign in to comment.