We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1cebf9e commit 0e789abCopy full SHA for 0e789ab
test/unit/Logging.test.ts
@@ -73,15 +73,14 @@ describe('LoggingElement', () => {
73
expect(element.errorUI).to.have.property('open', true);
74
});
75
76
- it('shows a snackbar on an issue', async () => {
+ it('shows a snackbar on an issue', () => {
77
expect(element.issueUI).to.have.property('open', false);
78
element.dispatchEvent(
79
newIssueEvent({
80
validatorId: 'val',
81
title: 'test issue',
82
})
83
);
84
- await element.issueUI.updateComplete;
85
expect(element.issueUI).to.have.property('open', true);
86
87
0 commit comments