We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e429607 commit 67cdcd2Copy full SHA for 67cdcd2
src/components/vue-ui-treemap.cy.js
@@ -39,6 +39,21 @@ describe('<VueUiTreemap />', () => {
39
});
40
41
42
+ it('renders breadcrumbs', () => {
43
+ cy.mount(VueUiTreemap, {
44
+ props: {
45
+ dataset,
46
+ config
47
+ }
48
+ }).then(() => {
49
+ cy.get('.vue-ui-treemap-breadcrumbs').should('not.exist')
50
+ cy.get('.vue-ui-treemap-rect').first().click()
51
+ cy.get('.vue-ui-treemap-breadcrumbs').should('exist').and('be.visible')
52
+ cy.get('.vue-ui-treemap-crumb').first().click()
53
54
+ })
55
56
+
57
it('emits', () => {
58
cy.mount(VueUiTreemap, {
59
props: {
0 commit comments