Skip to content

Commit

Permalink
[FIX] npm/Installer: Do not wrap promise provided by rimraf v4
Browse files Browse the repository at this point in the history
This was overlooked during the dependency upgrade in #550
  • Loading branch information
RandomByte authored and d3xter666 committed Feb 6, 2023
1 parent 495c5d2 commit f464f57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/lib/ui5framework/npm/Installer.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {fileURLToPath} from "node:url";
const __dirname = path.dirname(fileURLToPath(import.meta.url));

test.beforeEach(async (t) => {
t.context.rimrafStub = sinon.stub().yieldsAsync();
t.context.rimrafStub = sinon.stub().resolves();

t.context.lockStub = sinon.stub();
t.context.unlockStub = sinon.stub();
Expand Down

0 comments on commit f464f57

Please sign in to comment.