Skip to content

Commit 71d34ee

Browse files
committed
chore: remove test
1 parent 42ef300 commit 71d34ee

File tree

1 file changed

+1
-30
lines changed

1 file changed

+1
-30
lines changed

src/__tests__/index.test.tsx

Lines changed: 1 addition & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1 @@
1-
import { render } from '@testing-library/react-native';
2-
import SecureView from './SecureView';
3-
4-
describe('SecureView', () => {
5-
it('renders without crashing', () => {
6-
const { getByTestId } = render(<SecureView testID="secure-view" />);
7-
expect(getByTestId('secure-view')).toBeTruthy();
8-
});
9-
10-
it('renders with enable prop set to true', () => {
11-
const { getByTestId } = render(
12-
<SecureView testID="secure-view" enable={true} />
13-
);
14-
expect(getByTestId('secure-view')).toBeTruthy();
15-
});
16-
17-
it('renders with enable prop set to false', () => {
18-
const { getByTestId } = render(
19-
<SecureView testID="secure-view" enable={false} />
20-
);
21-
expect(getByTestId('secure-view')).toBeTruthy();
22-
});
23-
24-
it('accepts standard View props', () => {
25-
const { getByTestId } = render(
26-
<SecureView testID="secure-view" style={{ backgroundColor: 'red' }} />
27-
);
28-
expect(getByTestId('secure-view')).toBeTruthy();
29-
});
30-
});
1+
it.todo('write a test');

0 commit comments

Comments
 (0)