Fix typo in e2e test

This commit is contained in:
Jan Tuomi
2019-01-14 19:02:51 +02:00
parent e659d06b7b
commit 939c79d3d0
+1 -1
View File
@@ -11,7 +11,7 @@ test("Favicon exists", async t => {
/**
* Test if there is a favicon element on the page
*/
const elem = Selector("link[rel=\"icon\"");
const elem = Selector("link[rel=\"icon\"]");
await t.expect(elem.exists).ok();
});