Skip to content
This repository has been archived by the owner on Jan 30, 2025. It is now read-only.

Commit

Permalink
Fix page.TestShadowDOMAndDocumentFragment
Browse files Browse the repository at this point in the history
  • Loading branch information
inancgumus committed May 23, 2024
1 parent c8f46c3 commit 163eec3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/page_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1726,7 +1726,8 @@ func TestShadowDOMAndDocumentFragment(t *testing.T) {
state: 'attached',
});
return s.innerText();
const text = await s.innerText();
return text;
`, s.URL, testBrowserStaticDir, tt.selector)
assert.Equal(t, tt.want, got.Result().String())
})
Expand Down

0 comments on commit 163eec3

Please # to comment.