js

describe('adjust font size', () => {
  beforeEach(() => {
    cy.visit('/')
    // cy.wait(0) // THIS
  })
 
  it('first fusen', () => {
    cy.get('.fusen').first().should("have.css", "font-size", "66px")
  })
 

without wait(0) image

with wait(0) image