import get from './get'; describe('Alarms current get', () => { afterAll(() => {}); it.skip('Returns rule ids with an active alarm', async done => { let { data, response } = await get({}); if (data) { console.log(Object.keys(data)); } console.log(response); done(); }); it('With empty uuid and nodeId params it returns active alarms for all authorized nodes', () => {}); it('If no ids provided and no authorized nodes found it returns 404', () => {}); });