diff --git a/app/components/App/AvailableFunds/__tests__/index.test.js b/app/components/App/AvailableFunds/__tests__/index.test.js
new file mode 100644
index 0000000..8f10570
--- /dev/null
+++ b/app/components/App/AvailableFunds/__tests__/index.test.js
@@ -0,0 +1,71 @@
+import React from 'react';
+import { renderWithProviders } from '../../../../../internals/testing/redux-utils';
+import AvailableFunds from '../index';
+
+describe('', () => {
+ it('should render without crashing', () => {
+ const initialState = {
+ global: {
+ user: {
+ name: 'Test User',
+ availableFunds: 2500.75,
+ },
+ isLogged: true,
+ },
+ };
+
+ const { container } = renderWithProviders(, {
+ initialState,
+ });
+ expect(container.firstChild).toBeInTheDocument();
+ });
+
+ it('should render with different fund amounts', () => {
+ const initialState = {
+ global: {
+ user: {
+ name: 'Test User',
+ availableFunds: 10000.0,
+ },
+ isLogged: true,
+ },
+ };
+
+ const { container } = renderWithProviders(, {
+ initialState,
+ });
+ expect(container.firstChild).toBeInTheDocument();
+ });
+
+ it('should handle zero funds', () => {
+ const initialState = {
+ global: {
+ user: {
+ name: 'Test User',
+ availableFunds: 0,
+ },
+ isLogged: true,
+ },
+ };
+
+ const { container } = renderWithProviders(, {
+ initialState,
+ });
+ expect(container.firstChild).toBeInTheDocument();
+ });
+
+ it('should handle loading state', () => {
+ const initialState = {
+ global: {
+ user: { name: 'Test User' },
+ isLogged: true,
+ isLoading: true,
+ },
+ };
+
+ const { container } = renderWithProviders(, {
+ initialState,
+ });
+ expect(container.firstChild).toBeInTheDocument();
+ });
+});
diff --git a/app/components/App/BankCards/__tests__/__snapshots__/index.test.js.snap b/app/components/App/BankCards/__tests__/__snapshots__/index.test.js.snap
index 7e1be30..ae238d3 100644
--- a/app/components/App/BankCards/__tests__/__snapshots__/index.test.js.snap
+++ b/app/components/App/BankCards/__tests__/__snapshots__/index.test.js.snap
@@ -1,8 +1,8 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
+// Jest Snapshot v1, https://jestjs.io/docs/snapshot-testing
exports[` should render a BankCards 1`] = `
should render a BankCards 1`] = `
class="ant-card-extra"
>