Skip to content

Commit 9e164c7

Browse files
committed
remove unstable test for checkbox
1 parent 37fcfe1 commit 9e164c7

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

e2e/components/checkbox/checkbox.e2e.ts

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -36,20 +36,13 @@ describe('checkbox', function () {
3636

3737
inputEl.getAttribute('checked').then((value: string) => {
3838
expect(value).toBeFalsy('Expect checkbox "checked" property to be false');
39-
browser.wait(ExpectedConditions.not(
40-
ExpectedConditions.presenceOf(element(by.css('div.mat-ripple-element')))))
41-
.then(() => screenshot('start'));
4239
});
4340

4441
inputEl.sendKeys(Key.SPACE);
4542

4643
inputEl.getAttribute('checked').then((value: string) => {
4744
expect(value).toBeTruthy('Expect checkbox "checked" property to be true');
48-
browser.wait(ExpectedConditions.not(
49-
ExpectedConditions.presenceOf(element(by.css('div.mat-ripple-element')))))
50-
.then(() => screenshot('pressed space'));
5145
});
5246
});
53-
5447
});
5548
});

0 commit comments

Comments
 (0)