-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Machiko Yasuda <[email protected]>
- Loading branch information
Machiko Yasuda
committed
Sep 25, 2019
1 parent
6e0192c
commit 4d6ccbf
Showing
2 changed files
with
22 additions
and
2 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
22 changes: 21 additions & 1 deletion
22
package/src/components/Toast/__snapshots__/Toast.test.js.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 |
---|---|---|
@@ -1,3 +1,23 @@ | ||
// Jest Snapshot v1, https://goo.gl/fbAQLP | ||
|
||
exports[`basic snapshot - only default props 1`] = `<DocumentFragment />`; | ||
exports[`basic snapshot - only default props 1`] = ` | ||
<DocumentFragment> | ||
<div | ||
class="MuiSnackbar-root MuiSnackbar-anchorOriginBottomCenter" | ||
> | ||
<div | ||
class="MuiTypography-root MuiPaper-root MuiPaper-elevation6 MuiSnackbarContent-root makeStyles-info-10 MuiTypography-body2" | ||
direction="up" | ||
props="[object Object]" | ||
role="alertdialog" | ||
style="opacity: 1; transform: scale(1, 1); transition: opacity 225ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,transform 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;" | ||
> | ||
<div | ||
class="MuiSnackbarContent-message" | ||
> | ||
Test message | ||
</div> | ||
</div> | ||
</div> | ||
</DocumentFragment> | ||
`; |