-
Notifications
You must be signed in to change notification settings - Fork 91
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: Ashish Agrawal <[email protected]>
- Loading branch information
Showing
8 changed files
with
2,758 additions
and
493 deletions.
There are no files selected for viewing
1,108 changes: 1,108 additions & 0 deletions
1,108
public/pages/CreateTrigger/components/Action/__snapshots__/Action.test.js.snap
Large diffs are not rendered by default.
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
50 changes: 50 additions & 0 deletions
50
...teTrigger/components/NotificationsCallOut/__snapshots__/NotificationsCallOut.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 |
---|---|---|
@@ -0,0 +1,50 @@ | ||
// Jest Snapshot v1, https://goo.gl/fbAQLP | ||
|
||
exports[`NotifictionsCallOut renders 1`] = ` | ||
<div> | ||
<div | ||
class="euiCallOut euiCallOut--danger" | ||
> | ||
<div | ||
class="euiCallOutHeader" | ||
> | ||
<div> | ||
EuiIconMock | ||
</div> | ||
<span | ||
class="euiCallOutHeader__title" | ||
> | ||
Notifications plugin is not installed | ||
</span> | ||
</div> | ||
<div | ||
class="euiText euiText--small" | ||
> | ||
<p> | ||
Install the notifications plugin in order to create and select channels to send out notifications. | ||
<a | ||
class="euiLink euiLink--primary" | ||
href="#" | ||
rel="noreferrer" | ||
> | ||
Learn more | ||
</a> | ||
</p> | ||
<div> | ||
<a | ||
class="euiLink euiLink--primary" | ||
href="#" | ||
rel="noreferrer" | ||
> | ||
EuiIconMock | ||
</a> | ||
</div> | ||
. | ||
<p /> | ||
</div> | ||
</div> | ||
<div | ||
class="euiSpacer euiSpacer--m" | ||
/> | ||
</div> | ||
`; |
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
95 changes: 95 additions & 0 deletions
95
...s/components/NotificationsInfoCallOut/__snapshots__/NotificationsInfoCallOut.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 |
---|---|---|
@@ -0,0 +1,95 @@ | ||
// Jest Snapshot v1, https://goo.gl/fbAQLP | ||
|
||
exports[`NotificationsInfoCallOut renders when Notifications plugin is installed 1`] = ` | ||
<div> | ||
<div | ||
class="euiCallOut euiCallOut--primary" | ||
> | ||
<div | ||
class="euiCallOutHeader" | ||
> | ||
<span | ||
class="euiCallOutHeader__title" | ||
> | ||
Destinations have become channels in Notifications. | ||
</span> | ||
</div> | ||
<div | ||
class="euiText euiText--small" | ||
> | ||
<p> | ||
Your destinations have been migrated to Notifications, a new centralized place to manage your notification channels. Destinations will be deprecated going forward. | ||
</p> | ||
<div | ||
class="euiSpacer euiSpacer--l" | ||
/> | ||
<a | ||
class="euiButton euiButton--primary" | ||
href="/app/notifications-dashboards#/channels" | ||
rel="noreferrer" | ||
> | ||
<span | ||
class="euiButtonContent euiButton__content" | ||
> | ||
<span | ||
class="euiButton__text" | ||
> | ||
View Notifications | ||
</span> | ||
</span> | ||
</a> | ||
<p /> | ||
</div> | ||
</div> | ||
<div | ||
class="euiSpacer euiSpacer--l" | ||
/> | ||
</div> | ||
`; | ||
|
||
exports[`NotificationsInfoCallOut renders when Notifications plugin is not installed 1`] = ` | ||
<div> | ||
<div | ||
class="euiCallOut euiCallOut--primary" | ||
> | ||
<div | ||
class="euiCallOutHeader" | ||
> | ||
<span | ||
class="euiCallOutHeader__title" | ||
> | ||
Destinations have become channels in Notifications. | ||
</span> | ||
</div> | ||
<div | ||
class="euiText euiText--small" | ||
> | ||
<p> | ||
Your destinations have been migrated to Notifications, a new centralized place to manage your notification channels. Destinations will be deprecated going forward. | ||
</p> | ||
<div | ||
class="euiSpacer euiSpacer--l" | ||
/> | ||
<a | ||
class="euiButton euiButton--primary" | ||
href="/app/notifications-dashboards#/channels" | ||
rel="noreferrer" | ||
> | ||
<span | ||
class="euiButtonContent euiButton__content" | ||
> | ||
<span | ||
class="euiButton__text" | ||
> | ||
View Notifications | ||
</span> | ||
</span> | ||
</a> | ||
<p /> | ||
</div> | ||
</div> | ||
<div | ||
class="euiSpacer euiSpacer--l" | ||
/> | ||
</div> | ||
`; |
Oops, something went wrong.