-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
120 additions
and
24 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
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,69 @@ | ||
<template> | ||
<main class="main-wrapper"> | ||
<img | ||
style="height: 12rem" | ||
src="@/assets/images/cypress-image-diff-logo.png" | ||
/> | ||
|
||
<h1 style="font-weight: bold">Cypress Image Diff HTML Report</h1> | ||
|
||
<p> | ||
An intuitive HTML report that provides a comprehensive overview of visual | ||
differences, empowering your team to quickly identify and resolve any UI | ||
inconsistencies. | ||
</p> | ||
|
||
<p> | ||
Take control of your web testing process and elevate your development | ||
workflow with the | ||
<a href="https://cypress.visual-image-diff.dev/getting-started"> | ||
cypress-image-diff</a | ||
>. | ||
</p> | ||
|
||
<p> | ||
If you encounter any problems, please report them | ||
<a href="https://github.com/kien-ht/cypress-image-diff-html-report/issues" | ||
>here</a | ||
>. | ||
</p> | ||
</main> | ||
|
||
<footer class="footer"> | ||
<a href="https://github.com/uktrade/cypress-image-diff"> | ||
<img src="@/assets/images/github.png" /> | ||
<span>Github</span> | ||
</a> | ||
</footer> | ||
</template> | ||
|
||
<script lang="ts" setup></script> | ||
|
||
<style scoped> | ||
.main-wrapper { | ||
flex: 1 1 auto; | ||
display: flex; | ||
flex-direction: column; | ||
gap: 2rem; | ||
align-items: center; | ||
justify-content: center; | ||
margin: auto; | ||
max-width: 60rem; | ||
padding: 2rem; | ||
text-align: center; | ||
} | ||
.footer { | ||
display: flex; | ||
align-items: center; | ||
gap: 0.5rem; | ||
justify-content: center; | ||
padding: 2rem; | ||
} | ||
.footer > * { | ||
display: flex; | ||
align-items: center; | ||
gap: 0.5rem; | ||
} | ||
</style> |
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 |
---|---|---|
|
@@ -81,3 +81,7 @@ | |
overflow: auto; | ||
margin: auto; | ||
} | ||
|
||
a { | ||
color: var(--color-primary); | ||
} |