-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
end2end tests: fix test_multiple_page_updates
was broken because seems like github diff something with project links replaced with using a custom made html page which should hopefully be more reliable anyway
- Loading branch information
Showing
3 changed files
with
69 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<!DOCTYPE html> | ||
<head> | ||
|
||
<script type="text/javascript" defer> | ||
let index = 0 | ||
const update_title = () => { | ||
document.title = `title ${index}` | ||
index += 1 | ||
setTimeout(update_title, 50) | ||
} | ||
update_title() | ||
|
||
</script> | ||
|
||
</head> | ||
<html> | ||
<body> | ||
|
||
<h1>My First Heading</h1> | ||
<p>My first paragraph.</p> | ||
|
||
<a href="https://github.com/karlicoss/promnesia">link to promnesia</a> | ||
|
||
<a href="https://github.com/karlicoss/promnesia/issues">link to promnesia issues</a> | ||
|
||
<a href="https://news.ycombinator.com/newest">link to HN</a> | ||
|
||
<a href="https://github.com/karlicoss/promnesia">another link to promnesia</a> | ||
|
||
|
||
</body> | ||
</html> |