mirror of
https://github.com/actions/setup-node.git
synced 2025-04-24 20:22:13 +00:00
Dont fail on not being able to unlink
This commit is contained in:
parent
ad45eb5231
commit
46111af811
1 changed files with 6 additions and 2 deletions
|
@ -37,8 +37,12 @@ describe('installer tests', () => {
|
||||||
}, 100000);
|
}, 100000);
|
||||||
|
|
||||||
afterAll(async () => {
|
afterAll(async () => {
|
||||||
|
try {
|
||||||
await io.rmRF(toolDir);
|
await io.rmRF(toolDir);
|
||||||
await io.rmRF(tempDir);
|
await io.rmRF(tempDir);
|
||||||
|
} finally {
|
||||||
|
console.log('Failed to remove test directories');
|
||||||
|
}
|
||||||
}, 100000);
|
}, 100000);
|
||||||
|
|
||||||
it('Acquires version of node if no matching version is installed', async () => {
|
it('Acquires version of node if no matching version is installed', async () => {
|
||||||
|
|
Loading…
Add table
Reference in a new issue