From 1bc28e123e33c00f60a0c21fbecc802b2a6ae508 Mon Sep 17 00:00:00 2001 From: teddddd Date: Wed, 5 Jun 2019 12:43:35 -0700 Subject: [PATCH] remove a few superfluous asyncs from tests --- test/browser/component.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/browser/component.js b/test/browser/component.js index d98e512f..a76609c8 100644 --- a/test/browser/component.js +++ b/test/browser/component.js @@ -307,7 +307,7 @@ describe(`Nested Component instance`, function() { expect(childEl.findPanelParentByTagName(`nested-app`)).to.equal(el); }); - it(`flushes child state updates to parent`, async function() { + it(`flushes child state updates to parent`, function() { el.connectedCallback(); expect(el.state).to.not.have.property(`childAnimal`); childEl = document.createElement(`nested-child`); @@ -347,7 +347,7 @@ describe(`Nested Component instance`, function() { expect(childEl.textContent).to.include(`parent title: test`); }); - it(`flushes child state to parent state`, async function() { + it(`flushes child state to parent state`, function() { expect(childEl.textContent).to.include(`child animal: fox`); }); @@ -423,7 +423,7 @@ describe(`Nested Component instance with partially shared state`, function() { expect(childEl.textContent).to.include(`child: parentOnlyState: undefined`); }); - it(`flushes shared app state from child to parent`, async function() { + it(`flushes shared app state from child to parent`, function() { expect(childEl.textContent).to.include(`shared child animal: fox`); });