style: format with prettier
This commit is contained in:
@@ -7,12 +7,17 @@ jest.mock('child_process');
|
||||
|
||||
describe('installDependencies', () => {
|
||||
it('should install dependencies without errors', () => {
|
||||
const execSyncMock = jest.spyOn(child_process, 'execSync').mockImplementation(() => {});
|
||||
|
||||
const execSyncMock = jest
|
||||
.spyOn(child_process, 'execSync')
|
||||
.mockImplementation(() => {});
|
||||
|
||||
installDependencies();
|
||||
|
||||
expect(execSyncMock).toHaveBeenCalledWith(expect.stringContaining('npm install'), expect.anything());
|
||||
|
||||
|
||||
expect(execSyncMock).toHaveBeenCalledWith(
|
||||
expect.stringContaining('npm install'),
|
||||
expect.anything()
|
||||
);
|
||||
|
||||
execSyncMock.mockRestore();
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user