mirror of
https://github.com/aleleba/react-list-ui-library.git
synced 2025-04-19 10:37:47 -06:00
12 lines
248 B
TypeScript
12 lines
248 B
TypeScript
import React from 'react';
|
|
import { Button } from '@components';
|
|
|
|
describe('Testing Button Component', () => {
|
|
beforeEach(() => {
|
|
cy.mount(<Button />);
|
|
});
|
|
it('Show Button', () => {
|
|
cy.get('button').should('have.length', 1);
|
|
});
|
|
})
|