mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-19 17:22:48 -05:00
Remove unnecessary awaits from extensions (#19571)
* Remove unnecessary awaits * fix ignore * revert eslintignore * try * increase size * Increase sql lint size
This commit is contained in:
@@ -69,11 +69,11 @@ describe('NetCoreTool: Net core tests', function (): void {
|
||||
should(text.toString().trim()).equal('test');
|
||||
}
|
||||
finally {
|
||||
await fs.exists(dummyFile, async (existBool) => {
|
||||
if (existBool) {
|
||||
await fs.promises.unlink(dummyFile);
|
||||
}
|
||||
});
|
||||
try {
|
||||
await fs.promises.unlink(dummyFile);
|
||||
} catch (err) {
|
||||
console.warn(`Failed to clean up ${dummyFile}`);
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user