Skip to content

Commit 3de41a6

Browse files
author
Akos Kitta
committed
fix(test): missing await
1 parent bed3741 commit 3de41a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: arduino-ide-extension/src/test/node/sketches-service-impl.slow-test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ describe('isAccessibleSketchPath', () => {
105105
return this.skip();
106106
}
107107
this.timeout(60_000);
108-
const actual = isAccessibleSketchPath('\\\\10.0.0.200\\path');
108+
const actual = await isAccessibleSketchPath('\\\\10.0.0.200\\path');
109109
expect(actual).to.be.undefined;
110110
});
111111
});

0 commit comments

Comments
 (0)