diff --git a/src/components/actions/Button/button.test.tsx b/src/components/actions/Button/button.test.tsx
deleted file mode 100644
index 0740000..0000000
--- a/src/components/actions/Button/button.test.tsx
+++ /dev/null
@@ -1,87 +0,0 @@
-import { Copy } from '@jengaicons/react';
-
-import { render, screen } from '../../../test';
-
-import { Button } from './Button';
-
-describe('', () => {
- it('should add data-qa', () => {
- render();
-
- expect(screen.getByTestId('test')).toBeInTheDocument();
- });
-
- it('should have data-is-loading', () => {
- render(
- ,
- );
-
- expect(screen.getByTestId('ApplyDbConnection')).toHaveAttribute(
- 'data-is-loading',
- '',
- );
- });
-
- it('should have data-is-loading after rerender', () => {
- const { rerender } = render(
- ,
- );
-
- rerender(
- ,
- );
-
- expect(screen.getByTestId('ApplyDbConnection')).toHaveAttribute(
- 'data-is-loading',
- '',
- );
- });
-
- it.each([
- ['none', {}],
- ['icon', { icon: }],
- ])(`should warn if %s specified`, (_, value) => {
- const spy = jest.spyOn(console, 'warn').mockImplementation(() => {});
-
- render();
-
- expect(spy).toHaveBeenCalled();
-
- spy.mockRestore();
- });
-
- it.each([
- ['aria-label', { 'aria-label': 'test' }],
- ['aria-labelledby', { 'aria-labelledby': 'test' }],
- ['label', { label: 'test' }],
- ['children', { children: 'test' }],
- ['aria-label and children', { 'aria-label': 'test', children: 'test' }],
- ['label and children', { label: 'test', children: 'test' }],
- ['icon and children', { icon: , children: 'test' }],
- ['icon and label', { icon: , label: 'test' }],
- ['icon and aria-label', { icon: , 'aria-label': 'test' }],
- // prettier-ignore
- ['icon and aria-labelledby', { icon: , 'aria-labelledby': 'test' }],
- // prettier-ignore
- ['rightIcon and children', { rightIcon: , children: 'test' }],
- ['rightIcon and label', { rightIcon: , label: 'test' }],
- // prettier-ignore
- ['rightIcon and aria-label', { rightIcon: , 'aria-label': 'test' }],
- // prettier-ignore
- ['rightIcon and aria-labelledby', { rightIcon: , 'aria-labelledby': 'test' }],
- ])('should not warn if %s is provided', (_, value) => {
- const spy = jest.spyOn(console, 'warn').mockImplementation(() => {});
-
- render();
-
- expect(spy).not.toHaveBeenCalled();
-
- spy.mockRestore();
- });
-});