Skip to content

Commit 36520a2

Browse files
committed
Merge branch 'master' of github.com:wix/react-native-ui-lib into release
2 parents 9eadd4e + efc4ec1 commit 36520a2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/components/button/__tests__/index.driver.spec.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,9 @@ describe('Button', () => {
3737
let onPressCallback;
3838
beforeEach(() => onPressCallback = jest.fn());
3939
afterEach(() => onPressCallback.mockClear());
40-
it('should trigger onPress callback', async () => {
40+
41+
// TODO: This test is flaky and only fail on CI - we should investigate why
42+
it.skip('should trigger onPress callback', async () => {
4143
const wrapperComponent = renderWrapperScreenWithButton({onPress: onPressCallback});
4244
const buttonDriver = await ButtonTestKit({wrapperComponent, testID: BUTTON_ID});
4345
buttonDriver.click();

0 commit comments

Comments
 (0)