mirror of
https://github.com/actions/setup-node.git
synced 2025-04-03 18:13:06 +08:00
Fix other linux test
This commit is contained in:
parent
a0d28fa5cc
commit
79f71d92a1
|
@ -24,7 +24,11 @@ describe('installer tests', () => {
|
||||||
const nodeDir = path.join(toolDir, 'node', '10.16.0', os.arch());
|
const nodeDir = path.join(toolDir, 'node', '10.16.0', os.arch());
|
||||||
|
|
||||||
expect(fs.existsSync(`${nodeDir}.complete`)).toBe(true);
|
expect(fs.existsSync(`${nodeDir}.complete`)).toBe(true);
|
||||||
expect(fs.existsSync(path.join(nodeDir, 'node.exe'))).toBe(true);
|
if (IS_WINDOWS) {
|
||||||
|
expect(fs.existsSync(path.join(nodeDir, 'node.exe'))).toBe(true);
|
||||||
|
} else {
|
||||||
|
expect(fs.existsSync(path.join(nodeDir, 'bin', 'node'))).toBe(true);
|
||||||
|
}
|
||||||
}, 100000);
|
}, 100000);
|
||||||
|
|
||||||
if (IS_WINDOWS) {
|
if (IS_WINDOWS) {
|
||||||
|
@ -41,11 +45,7 @@ describe('installer tests', () => {
|
||||||
const nodeDir = path.join(toolDir, 'node', '0.12.18', os.arch());
|
const nodeDir = path.join(toolDir, 'node', '0.12.18', os.arch());
|
||||||
|
|
||||||
expect(fs.existsSync(`${nodeDir}.complete`)).toBe(true);
|
expect(fs.existsSync(`${nodeDir}.complete`)).toBe(true);
|
||||||
if (IS_WINDOWS) {
|
expect(fs.existsSync(path.join(nodeDir, 'node.exe'))).toBe(true);
|
||||||
expect(fs.existsSync(path.join(nodeDir, 'node.exe'))).toBe(true);
|
|
||||||
} else {
|
|
||||||
expect(fs.existsSync(path.join(nodeDir, 'bin', 'node'))).toBe(true);
|
|
||||||
}
|
|
||||||
}, 100000);
|
}, 100000);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user