Skip to content

Commit d807e6e

Browse files
committed
test: Remove a few extraneous async's
1 parent f000aa2 commit d807e6e

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
@@ -485,7 +485,7 @@ describe('web components', () => {
485485

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

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

491491
const noSlot = document.createElement('x-display-theme');
@@ -508,7 +508,7 @@ describe('web components', () => {
508508
assert.equal(getShadowHTML(), '<p>Active theme: sunny</p>');
509509
});
510510

511-
it('supports controlling light DOM children', async () => {
511+
it('supports controlling light DOM children', () => {
512512
function LightDomChildren({ children }) {
513513
return (
514514
<Fragment>

0 commit comments

Comments
 (0)