Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@ Use pytest to run tests.

```bash
python -m pytest tests/
```

If you would like to update the snapshot tests, you can use the following command.

```bash
python -m pytest tests/ --update-snapshot
```

# License
Expand Down
2 changes: 2 additions & 0 deletions tests/snapshots/goodbye-cruel-world.snapshot.html
Original file line number Diff line number Diff line change
Expand Up @@ -306,6 +306,8 @@ <h2 id="next-sprint">Next Sprint</h2>
</li>
<li class="ms-3"><a href="https://twitter.com/_JohnnyIrvin" target="_blank" class="text-muted"><img src="/static/img/twitter.svg" alt="Twitter"></a>
</li>
<li class="ms-3"><a href="https://www.instagram.com/j0hnnyirvin/" target="_blank" class="text-muted"><img src="/static/img/instagram.svg" alt="Instagram"></a>
</li>
<li class="ms-3"><a href="https://www.linkedin.com/in/johnnyirvin/" target="_blank" class="text-muted"><img src="/static/img/linkedin.svg" alt="LinkedIn"></a>
</li>
</ul>
Expand Down
2 changes: 2 additions & 0 deletions tests/snapshots/hello-world.snapshot.html
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ <h2 id="conclusion">Conclusion</h2>
</li>
<li class="ms-3"><a href="https://twitter.com/_JohnnyIrvin" target="_blank" class="text-muted"><img src="/static/img/twitter.svg" alt="Twitter"></a>
</li>
<li class="ms-3"><a href="https://www.instagram.com/j0hnnyirvin/" target="_blank" class="text-muted"><img src="/static/img/instagram.svg" alt="Instagram"></a>
</li>
<li class="ms-3"><a href="https://www.linkedin.com/in/johnnyirvin/" target="_blank" class="text-muted"><img src="/static/img/linkedin.svg" alt="LinkedIn"></a>
</li>
</ul>
Expand Down
3 changes: 3 additions & 0 deletions website/static/img/instagram.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions website/templates/layout.pug
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ html
img(src="{{url_for('static', filename='img/github.svg')}}", alt="Github")
li.ms-3: a.text-muted(href="https://twitter.com/_JohnnyIrvin" target="_blank")
img(src="{{url_for('static', filename='img/twitter.svg')}}", alt="Twitter")
li.ms-3: a.text-muted(href="https://www.instagram.com/j0hnnyirvin/" target="_blank")
img(src="{{url_for('static', filename='img/instagram.svg')}}", alt="Instagram")
li.ms-3: a.text-muted(href="https://www.linkedin.com/in/johnnyirvin/" target="_blank")
img(src="{{url_for('static', filename='img/linkedin.svg')}}", alt="LinkedIn")
ul.nav.list-unstyled.d-flex.col-md-12.justify-content-start.d-flex
Expand Down