Skip to content

Commit b9e732e

Browse files
committed
test: Remove a few extraneous async's
1 parent 7177d82 commit b9e732e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/index.test.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@ describe('web components', () => {
442442

443443
registerElement(Parent, 'x-parent', ['theme'], { shadow: true });
444444

445-
it('passes context over custom element boundaries', async () => {
445+
it('passes context over custom element boundaries', () => {
446446
const el = document.createElement('x-parent');
447447

448448
const noSlot = document.createElement('x-display-theme');
@@ -465,7 +465,7 @@ describe('web components', () => {
465465
assert.equal(getShadowHTML(), '<p>Active theme: sunny</p>');
466466
});
467467

468-
it('supports controlling light DOM children', async () => {
468+
it('supports controlling light DOM children', () => {
469469
function LightDomChildren({ children }) {
470470
return (
471471
<Fragment>

0 commit comments

Comments
 (0)