mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 09:18:59 +00:00
d747a471af
* Isolate each API entity * Improve code structure in API client and request mocks * Standardize on a request mock structure * Use helper for creating request mocks * Adds Request class to handle API requests
18 lines
383 B
JavaScript
18 lines
383 B
JavaScript
import createRequestMock from 'test/mocks/create_request_mock';
|
|
import helpers from 'kolide/helpers';
|
|
|
|
export default {
|
|
create: {
|
|
valid: (unformattedParams) => {
|
|
const params = helpers.setupData(unformattedParams);
|
|
|
|
return createRequestMock({
|
|
endpoint: '/api/v1/setup',
|
|
method: 'post',
|
|
params,
|
|
response: {},
|
|
});
|
|
},
|
|
},
|
|
};
|