Skip to content

Commit

Permalink
Fixing smoke test.
Browse files Browse the repository at this point in the history
  • Loading branch information
bsommardahl committed Dec 12, 2024
1 parent 3020460 commit 0e11eeb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/e2e/smoke.e2e.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ async function main() {
let value = await element.evaluate((el: any) => el.textContent);
if (!value) throw new Error("Element had no value.");
await browser.close();
const found = value.toLowerCase().indexOf("Anyhasher") > -1;
const found = value.toLowerCase().indexOf("anyhasher") > -1;
if (!found) {
console.log(value);
throw new Error("Smoke test failed.");
Expand Down

0 comments on commit 0e11eeb

Please # to comment.