fantasia-archive/src/components/GlobalWindowButtons/GlobalWindowButtons.cy.test.ts
2023-08-29 00:05:58 +02:00

12 lines
361 B
TypeScript

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)')
})
})