Commit 5079dcdc by Patrick O'Carroll

updated jest file and snapshot

parent 2248bf43
...@@ -45,7 +45,7 @@ describe('AlertRuleList', () => { ...@@ -45,7 +45,7 @@ describe('AlertRuleList', () => {
it('should render 1 rule', () => { it('should render 1 rule', () => {
page.update(); page.update();
let ruleNode = page.find('.card-item-wrapper'); let ruleNode = page.find('.alert-rule-item');
expect(toJson(ruleNode)).toMatchSnapshot(); expect(toJson(ruleNode)).toMatchSnapshot();
}); });
......
...@@ -2,71 +2,68 @@ ...@@ -2,71 +2,68 @@
exports[`AlertRuleList should render 1 rule 1`] = ` exports[`AlertRuleList should render 1 rule 1`] = `
<li <li
className="card-item-wrapper" className="alert-rule-item"
> >
<div <div
className="card-item card-item--alert" className="alert-rule-item__body"
> >
<span
className="alert-rule-item__icon alert-state-ok"
>
<i
className="icon-gf icon-gf-online"
/>
</span>
<div <div
className="card-item-header" className="alert-rule-item__header"
> >
<div <div
className="card-item-type" className="alert-rule-item__name"
> >
<a <a
className="card-item-cog"
onClick={[Function]}
title="Pausing an alert rule prevents it from executing"
>
<i
className="fa fa-pause"
/>
</a>
<a
className="card-item-cog"
href="dashboard/db/mygool?panelId=3&fullscreen&edit&tab=alert" href="dashboard/db/mygool?panelId=3&fullscreen&edit&tab=alert"
title="Edit alert rule"
> >
<i Panel Title alert
className="icon-gf icon-gf-settings"
/>
</a> </a>
</div> </div>
</div>
<div
className="card-item-body"
>
<div <div
className="card-item-details" className="alert-rule-item__text"
> >
<div <span
className="card-item-name" className="alert-state-ok"
> >
<a OK
href="dashboard/db/mygool?panelId=3&fullscreen&edit&tab=alert" </span>
> <span
Panel Title alert className="alert-rule-item__time"
</a>
</div>
<div
className="card-item-sub-name"
> >
<span for
className="alert-list-item-state alert-state-ok" 5 minutes
> </span>
<i
className="icon-gf icon-gf-online"
/>
OK
</span>
<span>
for
5 minutes
</span>
</div>
</div> </div>
</div> </div>
</div> </div>
<div
className="alert-rule-item__footer"
>
<a
className="btn btn-small btn-inverse alert-list__btn width-2"
onClick={[Function]}
title="Pausing an alert rule prevents it from executing"
>
<i
className="fa fa-pause"
/>
</a>
<a
className="btn btn-small btn-inverse alert-list__btn width-2"
href="dashboard/db/mygool?panelId=3&fullscreen&edit&tab=alert"
title="Edit alert rule"
>
<i
className="icon-gf icon-gf-settings"
/>
</a>
</div>
</li> </li>
`; `;
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment