-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
build_review_page_197 #232
Conversation
await scrollContainer.evaluate((el) => el.scrollBy(0, 100)); | ||
const afterScroll = await scrollContainer.evaluate((el) => el.scrollTop); | ||
|
||
await expect(afterScroll).toBeGreaterThan(beforeScroll); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
await
is not needed here, toBeGreaterThan
doesnt return a promise
test("Displays extracted data with overall confidence score", async ({ | ||
page, | ||
}) => { | ||
const extractedDataHeader = await page.getByRole("heading", { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
await
is not needed here
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, with super minor nitpicks
de2210c
Pull Request
Description
#197