react-native/local-cli/core/__tests__/makeCommand.spec.js
Tim Yung 223eab930b RN: Cleanup local-cli/core/__tests__
Reviewed By: raluca-elena

Differential Revision: D5224347

fbshipit-source-id: 99a729c49bec28bf89d9dc91530958beec878828
2017-06-10 00:08:23 -07:00

51 lines
1.1 KiB
JavaScript

/**
* Copyright (c) 2013-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*
* @format
*/
'use strict';
jest.autoMockOff();
let spawnError = false;
jest.setMock('child_process', {
spawn: () => ({
on: (event, cb) => cb(spawnError),
}),
});
const makeCommand = require('../makeCommand');
describe('makeCommand', () => {
const command = makeCommand('echo');
it('generates a function around shell command', () => {
expect(typeof command).toBe('function');
});
it('throws an error if there is no callback provided', () => {
expect(command).toThrow();
});
it('invokes a callback after command execution', () => {
const spy = jest.fn();
command(spy);
expect(spy.mock.calls).toHaveLength(1);
});
it('throws an error if spawn ended up with error', () => {
spawnError = true;
const cb = jest.fn();
expect(() => {
command(cb);
}).toThrow();
});
});