-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Light refactor of visual tests (#5585)
- Loading branch information
1 parent
10f3e13
commit 50694f6
Showing
31 changed files
with
935 additions
and
541 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,17 @@ | ||
version: 2 | ||
snapshot: | ||
widths: [1024] | ||
min-height: 1440 # px | ||
percyCSS: | | ||
.t-indicator-clock > .label { | ||
opacity: 0 !important; | ||
} | ||
.c-input--datetime { | ||
opacity: 0 !important; | ||
} | ||
div.c-conductor-axis.c-conductor__ticks > svg { | ||
opacity: 0 !important; | ||
} | ||
div.c-inspector__properties.c-inspect-properties > ul > li:nth-child(3) { | ||
display: none !important; | ||
} |
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,17 @@ | ||
version: 2 | ||
snapshot: | ||
widths: [1024, 2000] | ||
min-height: 1440 # px | ||
percyCSS: | | ||
.t-indicator-clock > .label { | ||
opacity: 0 !important; | ||
} | ||
.c-input--datetime { | ||
opacity: 0 !important; | ||
} | ||
div.c-conductor-axis.c-conductor__ticks > svg { | ||
opacity: 0 !important; | ||
} | ||
div.c-inspector__properties.c-inspect-properties > ul > li:nth-child(3) { | ||
display: none !important; | ||
} |
This file was deleted.
Oops, something went wrong.
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,9 @@ | ||
/** | ||
* Constants which may be used across all e2e tests. | ||
*/ | ||
|
||
/** | ||
* Time Constants | ||
* - Used for overriding the browser clock in tests. | ||
*/ | ||
export const MISSION_TIME = 1732413600000; // Saturday, November 23, 2024 6:00:00 PM GMT-08:00 (Thanksgiving Dinner Time) |
Oops, something went wrong.