Skip to content

Commit 4668b0e

Browse files
committed
fix format
1 parent 93d92c4 commit 4668b0e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

test/unit/LocalInstaller.spec.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,10 @@ describe('LocalInstaller install', () => {
146146
it('should remove the temporary directory', async () => {
147147
await sut.install();
148148

149-
sinon.assert.calledWithExactly(helper.rmStub, tmpDir, { recursive: true, force: true });
149+
sinon.assert.calledWithExactly(helper.rmStub, tmpDir, {
150+
recursive: true,
151+
force: true,
152+
});
150153
});
151154
});
152155

0 commit comments

Comments
 (0)