Skip to content

Commit 0e789ab

Browse files
author
Dennis Labordus
committed
Quick fix for the tests.
Signed-off-by: Dennis Labordus <[email protected]>
1 parent 1cebf9e commit 0e789ab

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

test/unit/Logging.test.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,15 +73,14 @@ describe('LoggingElement', () => {
7373
expect(element.errorUI).to.have.property('open', true);
7474
});
7575

76-
it('shows a snackbar on an issue', async () => {
76+
it('shows a snackbar on an issue', () => {
7777
expect(element.issueUI).to.have.property('open', false);
7878
element.dispatchEvent(
7979
newIssueEvent({
8080
validatorId: 'val',
8181
title: 'test issue',
8282
})
8383
);
84-
await element.issueUI.updateComplete;
8584
expect(element.issueUI).to.have.property('open', true);
8685
});
8786

0 commit comments

Comments
 (0)