Commit c3a0efaa authored by Alexander Turinske's avatar Alexander Turinske

Update alert status tests

parent 2e146b33
...@@ -88,22 +88,16 @@ describe('AlertDetails', () => { ...@@ -88,22 +88,16 @@ describe('AlertDetails', () => {
it('should show allowed alert fields', () => { it('should show allowed alert fields', () => {
const fields = findTableKeys(); const fields = findTableKeys();
['Iid', 'Title', 'Severity', 'Status', 'Hosts', 'Environment'].forEach((field) => {
expect(findTableField(fields, 'Iid').exists()).toBe(true); expect(findTableField(fields, field).exists()).toBe(true);
expect(findTableField(fields, 'Title').exists()).toBe(true); });
expect(findTableField(fields, 'Severity').exists()).toBe(true);
expect(findTableField(fields, 'Status').exists()).toBe(true);
expect(findTableField(fields, 'Hosts').exists()).toBe(true);
expect(findTableField(fields, 'Environment').exists()).toBe(true);
}); });
it('should not show disallowed alert fields', () => { it('should not show disallowed alert fields', () => {
const fields = findTableKeys(); const fields = findTableKeys();
['Typename', 'Todos', 'Notes', 'Assignees'].forEach((field) => {
expect(findTableField(fields, 'Typename').exists()).toBe(false); expect(findTableField(fields, field).exists()).toBe(false);
expect(findTableField(fields, 'Todos').exists()).toBe(false); });
expect(findTableField(fields, 'Notes').exists()).toBe(false);
expect(findTableField(fields, 'Assignees').exists()).toBe(false);
}); });
}); });
......
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