Skip to content

Commit

Permalink
test(android): update filterTouchesWhenObscured unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
jquick-axway committed Aug 27, 2020
1 parent 73ddd5d commit b6335c1
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions tests/Resources/ti.ui.view.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -1168,16 +1168,10 @@ describe('Titanium.UI.View', function () {
win.open();
});

it.android('filterTouchesWhenObscured', finish => {
it.android('filterTouchesWhenObscured', () => {
const view1 = Ti.UI.createView();
should(view1.filterTouchesWhenObscured).be.false();
const view2 = Ti.UI.createView({ filterTouchesWhenObscured: true });
should(view2.filterTouchesWhenObscured).be.true();

win = Ti.UI.createWindow();
win.add(view1);
win.add(view2);
win.addEventListener('open', () => finish());
win.open();
});
});

0 comments on commit b6335c1

Please sign in to comment.