@atlaskit/build-utils
Version:
Collection of utilities to used during the release process of Atlaskit
21 lines (13 loc) • 594 B
text/typescript
// @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',
);
});