-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 changed file
with
92 additions
and
0 deletions.
There are no files selected for viewing
92 changes: 92 additions & 0 deletions
92
src/components/Button/__snapshots__/Button.stories.tsx.snap
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,92 @@ | ||
// Jest Snapshot v1, https://goo.gl/fbAQLP | ||
|
||
exports[`Components/Button AutoFocus play-test 1`] = ` | ||
<main class="inter-normal"> | ||
<button type="button" | ||
data-testid="button-component" | ||
> | ||
Click me | ||
</button> | ||
</main> | ||
`; | ||
|
||
exports[`Components/Button ClickMultipleTimes play-test 1`] = ` | ||
<main class="inter-normal"> | ||
<button type="button" | ||
data-testid="button-component" | ||
> | ||
Click me | ||
</button> | ||
</main> | ||
`; | ||
|
||
exports[`Components/Button DisableDebounce play-test 1`] = ` | ||
<main class="inter-normal"> | ||
<button type="button" | ||
data-testid="button-component" | ||
> | ||
Click me | ||
</button> | ||
</main> | ||
`; | ||
|
||
exports[`Components/Button Disabled play-test 1`] = ` | ||
<main class="inter-normal"> | ||
<button type="button" | ||
disabled | ||
data-testid="button-component" | ||
> | ||
Click me | ||
</button> | ||
</main> | ||
`; | ||
|
||
exports[`Components/Button FocusOnClick play-test 1`] = ` | ||
<main class="inter-normal"> | ||
<button type="button" | ||
data-testid="button-component" | ||
> | ||
Click me | ||
</button> | ||
</main> | ||
`; | ||
|
||
exports[`Components/Button FocusOnTab play-test 1`] = ` | ||
<main class="inter-normal"> | ||
<button type="button" | ||
data-testid="button-component" | ||
> | ||
Click me | ||
</button> | ||
</main> | ||
`; | ||
|
||
exports[`Components/Button Playground smoke-test 1`] = ` | ||
<main class="inter-normal"> | ||
<button type="button" | ||
data-testid="button-component" | ||
> | ||
Click me | ||
</button> | ||
</main> | ||
`; | ||
|
||
exports[`Components/Button PressEnter play-test 1`] = ` | ||
<main class="inter-normal"> | ||
<button type="button" | ||
data-testid="button-component" | ||
> | ||
Click me | ||
</button> | ||
</main> | ||
`; | ||
|
||
exports[`Components/Button PressSpace play-test 1`] = ` | ||
<main class="inter-normal"> | ||
<button type="button" | ||
data-testid="button-component" | ||
> | ||
Click me | ||
</button> | ||
</main> | ||
`; |