// @ts-ignore
import runCommands from '../../runCommands';

describe('runCommands', () => {
  it.todo('should pass through commands to concurrently');

  it.todo('should wait for concurrently to finish');

  it.todo('return immediately when no commands passed');

  it.todo('run commands sequentially if opts.sequential is true');

  it.todo('should run onWatchSuccess when watchSuccessCondition is met');

  it.todo('should run onWatchSuccess when watchFirstSuccessCondition is met');

  it.todo(
    'should not run onWatchSuccess the second time watchFirstSuccessCondition is met',
  );
});
