Skip to content

Commit

Permalink
Adjust test and remove IE11
Browse files Browse the repository at this point in the history
  • Loading branch information
DiegoCardoso committed Mar 25, 2019
1 parent 9bff81e commit 935ce99
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
7 changes: 4 additions & 3 deletions test/vaadin-app-layout-test.html
Expand Up @@ -53,7 +53,6 @@ <h3 slot="navbar">AppName</h3>

it('should toggle drawer on vaadin-drawer-toggle click', () => {
const drawerToggle = layout.querySelector('vaadin-drawer-toggle');

const currentDrawerState = layout.drawerOpened;

drawerToggle.click();
Expand All @@ -77,8 +76,10 @@ <h3 slot="navbar">AppName</h3>
it('should hide drawer on resize if window is small', () => {
resizeIframeTo(600);

expect(layout.overlay).to.be.true;
layout.style.removeProperty('--vaadin-app-layout-drawer-overlay');
setTimeout(() => {
expect(layout.overlay).to.be.true;
layout.style.removeProperty('--vaadin-app-layout-drawer-overlay');
});
});
});
</script>
Expand Down
3 changes: 2 additions & 1 deletion wct.conf.js
Expand Up @@ -39,7 +39,8 @@ module.exports = {

const saucelabsPlatformsMicrosoft = [
'Windows 10/microsoftedge@17',
'Windows 10/internet explorer@11'
// Remove IE11 temporarily
// 'Windows 10/internet explorer@11'
];

const saucelabsPlatformsDesktop = [
Expand Down

0 comments on commit 935ce99

Please sign in to comment.