We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37fcfe1 commit 9e164c7Copy full SHA for 9e164c7
e2e/components/checkbox/checkbox.e2e.ts
@@ -36,20 +36,13 @@ describe('checkbox', function () {
36
37
inputEl.getAttribute('checked').then((value: string) => {
38
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'));
42
});
43
44
inputEl.sendKeys(Key.SPACE);
45
46
47
expect(value).toBeTruthy('Expect checkbox "checked" property to be true');
48
49
50
- .then(() => screenshot('pressed space'));
51
52
53
-
54
55
0 commit comments