diff --git a/app/soapbox/components/ui/form-actions/__tests__/form-actions.test.tsx b/app/soapbox/components/ui/form-actions/__tests__/form-actions.test.tsx
new file mode 100644
index 000000000..3c954ca69
--- /dev/null
+++ b/app/soapbox/components/ui/form-actions/__tests__/form-actions.test.tsx
@@ -0,0 +1,12 @@
+import React from 'react';
+
+import { render, screen } from '../../../../jest/test-helpers';
+import FormActions from '../form-actions';
+
+describe('', () => {
+ it('renders successfully', () => {
+ render(child
);
+
+ expect(screen.getByTestId('child')).toBeInTheDocument();
+ });
+});