mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 01:15:22 +00:00
21 lines
406 B
JavaScript
21 lines
406 B
JavaScript
import nock from 'nock';
|
|
|
|
beforeEach(() => {
|
|
nock('http://localhost:8080')
|
|
.post('/api/v1/kolide/targets', () => true)
|
|
.reply(200, {
|
|
targets_count: 1234,
|
|
targets: [
|
|
{
|
|
id: 3,
|
|
label: 'OS X El Capitan 10.11',
|
|
name: 'osx-10.11',
|
|
platform: 'darwin',
|
|
target_type: 'hosts',
|
|
},
|
|
],
|
|
});
|
|
});
|
|
|
|
afterEach(nock.cleanAll);
|