diff --git a/libs/ui/src/atoms/button/button.spec.tsx b/libs/ui/src/atoms/button/button.spec.tsx
index d6c2dd3..bb74faa 100644
--- a/libs/ui/src/atoms/button/button.spec.tsx
+++ b/libs/ui/src/atoms/button/button.spec.tsx
@@ -24,9 +24,9 @@ describe('Test Button Component', () => {
const button = screen.getByText('Delete');
- expect(button).toHaveClass('bg-danger-500');
- expect(button).toHaveClass('hover:bg-danger-600');
- expect(button).toHaveClass('text-white');
+ expect(button).toHaveClass('bg-danger-100');
+ expect(button).toHaveClass('hover:bg-danger-200');
+ expect(button).toHaveClass('text-danger-500');
});
it("disables the button when 'disabled' prop is set", async () => {
diff --git a/libs/ui/src/molecules/input-field/input-field.spec.tsx b/libs/ui/src/molecules/input-field/input-field.spec.tsx
index 948c77b..909b56b 100644
--- a/libs/ui/src/molecules/input-field/input-field.spec.tsx
+++ b/libs/ui/src/molecules/input-field/input-field.spec.tsx
@@ -3,7 +3,7 @@ import { InputField } from './input-field';
describe('InputField Component', () => {
it('renders correctly with disabled prop', () => {
- render();
+ render();
const input = screen.getByLabelText('Test Label');
expect(input).toBeDisabled();
@@ -11,7 +11,7 @@ describe('InputField Component', () => {
});
it('renders correctly without disabled prop', () => {
- render();
+ render();
const input = screen.getByLabelText('Test Label');
expect(input).not.toBeDisabled();