homebrew-services
Version:
Control Homebrew services from OSX
17 lines (12 loc) • 536 B
JavaScript
jest.mock('child_process');
const stop = require('./');
describe('stop()', () => {
it('should stop the service', async () => {
const { status } = await stop({ service: 'redis' });
expect(status).toEqual('stopped');
});
it('should return an error for incorrect service', () =>
expect(stop({ service: 'zookeeper' })).rejects.toThrowError(/Failed to stop zookeeper/));
it('should return an error for missing input parameters', () =>
expect(stop()).rejects.toThrowError(/Missing input parameter: service/));
});