fantasia-archive/src/components/GlobalWindowButtons/GlobalWindowButtons.cy.test.ts

12 lines
361 B
TypeScript
Raw Normal View History

import GlobalWindowButtons from './GlobalWindowButtons.vue'
describe('Component test - GlobalWindowButtons', () => {
it('should have a `accent` color & `dark` background-color', () => {
cy.mount(GlobalWindowButtons)
cy.get('.q-btn-group')
.should('have.backgroundColor', 'var(--q-dark)')
.should('have.color', 'var(--q-accent)')
})
})