UNPKG

node-meraki

Version:
23 lines (20 loc) 424 B
describe('device endpoints', () => { const { meraki, networkId } = global it('lists the network devices', async () => { const devices = await meraki.listNetworkDevices({ networkId }) const expected = [{ networkId }, { networkId }, { networkId }, { networkId }, { networkId }, { networkId }] return expect(devices).toMatchObject(expected) }) })