run format

This commit is contained in:
Dmitry Shibanov 2022-05-09 13:13:15 +02:00
parent d43033cfcd
commit 0c0e574755
2 changed files with 4 additions and 2 deletions

View file

@ -128,7 +128,9 @@ describe('Finder tests', () => {
});
const tcFindSpy: jest.SpyInstance = jest.spyOn(tc, 'find');
tcFindSpy.mockImplementationOnce(() => "").mockImplementationOnce(() => expPath);
tcFindSpy
.mockImplementationOnce(() => '')
.mockImplementationOnce(() => expPath);
await io.mkdirP(pythonDir);
await io.rmRF(path.join(toolDir, 'Python', '1.2.3'));