Skip to content

Commit

Permalink
More logs
Browse files Browse the repository at this point in the history
  • Loading branch information
svanherk committed Aug 4, 2023
1 parent 2718737 commit 677361a
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/browser/fixture.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,16 @@ export async function fixture(element, opts = {}) {
console.log('before reset');
await Promise.all([reset(opts), document.fonts.ready]);
console.log('after reset');
console.log('before wcFixture');
const elem = await wcFixture(element);
console.log('after wcFixture');
console.log('before waitForElem');
await waitForElem(elem, opts.awaitLoadingComplete);
console.log('after waitForElem');

console.log('before pause');
await pause();
console.log('after pause');
return elem;
}

Expand Down

0 comments on commit 677361a

Please sign in to comment.