mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
11 lines
203 B
JavaScript
11 lines
203 B
JavaScript
describe("Button", () => {
|
|
beforeEach(() => {
|
|
cy.examples("Button");
|
|
});
|
|
|
|
it("renders correctly", () => {
|
|
cy.get("button").then(($) => {
|
|
expect($.length).to.eql(4);
|
|
});
|
|
});
|
|
});
|