diff --git a/components/admins/components/__tests__/stakingParams.test.tsx b/components/admins/components/__tests__/stakingParams.test.tsx
deleted file mode 100644
index ad214d84..00000000
--- a/components/admins/components/__tests__/stakingParams.test.tsx
+++ /dev/null
@@ -1,56 +0,0 @@
-import { afterEach, describe, expect, test } from 'bun:test';
-import React from 'react';
-import { screen, cleanup, within, fireEvent } from '@testing-library/react';
-import StakingParams from '@/components/admins/components/stakingParams';
-import matchers from '@testing-library/jest-dom/matchers';
-import { mockStakingParams } from '@/tests/mock';
-import { renderWithChainProvider } from '@/tests/render';
-
-expect.extend(matchers);
-
-const renderWithProps = (props = {}) => {
- const defaultProps = {
- stakingParams: mockStakingParams,
- isLoading: false,
- address: 'test_address',
- admin: 'admin1',
- };
- return renderWithChainProvider(