Skip to content

Commit

Permalink
correcting lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
koebel committed May 8, 2024
1 parent a267a5b commit 1b2aada
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/e2e/steps/ViewerContext.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ Given(
for (const file of filesForUpload.hashes()) {
await uploadFile(file.filename)
// assert if file is listed in the file list after upload
const locator = await global.page.locator(util.format(ocis.elements.resourceNameSelector, file.filename)).toString()
const locator = await global.page
.locator(util.format(ocis.elements.resourceNameSelector, file.filename))
.toString()
expect(locator).toContain(file.filename)
}
}
Expand Down

0 comments on commit 1b2aada

Please sign in to comment.