File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/components/button/__tests__ Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,8 @@ const BUTTON_ID = 'button_test_id';
10
10
const CHILDREN_TEXT_ID = 'children_test_id' ;
11
11
const CHILDREN_TEXT = 'custom button text' ;
12
12
13
- describe ( 'Button' , ( ) => {
13
+ // TODO: This tests are flaky and only fail on CI - we should investigate why
14
+ describe . skip ( 'Button' , ( ) => {
14
15
it ( 'should render a button' , async ( ) => {
15
16
const wrapperComponent = renderWrapperScreenWithButton ( { } ) ;
16
17
const buttonDriver = await ButtonTestKit ( { wrapperComponent, testID : BUTTON_ID } ) ;
@@ -33,8 +34,7 @@ describe('Button', () => {
33
34
} ) ;
34
35
} ) ;
35
36
36
- // TODO: This tests are flaky and only fail on CI - we should investigate why
37
- describe . skip ( 'OnPress' , ( ) => {
37
+ describe ( 'OnPress' , ( ) => {
38
38
let onPressCallback ;
39
39
beforeEach ( ( ) => onPressCallback = jest . fn ( ) ) ;
40
40
afterEach ( ( ) => onPressCallback . mockClear ( ) ) ;
You can’t perform that action at this time.
0 commit comments