Removed dummy tests

pull/82/head
litetex 6 years ago
parent a5cce9bf9f
commit 5411b6342a

@ -114,27 +114,6 @@ describe('installer tests', () => {
}
}, 100000);
it('Check if get version works', async () => {
const dotnetInstaller = new installer.DotnetCoreInstaller('3.1.201');
let arr = await dotnetInstaller.resolveInfos(["win-x64"],new installer.DotNetVersionInfo("3.1.201"));
console.log(arr);
expect(true).toBe(true);
}, 400000);
it('Check if get latest version works', async () => {
const dotnetInstaller = new installer.DotnetCoreInstaller('3.1.x');
let arr = await dotnetInstaller.resolveInfos(["win-x64"],new installer.DotNetVersionInfo("3.1.x"));
console.log(arr);
expect(true).toBe(true);
}, 400000);
it('Acquires version of dotnet if no matching version is installed', async () => {
await getDotnet('2.2.205');
const dotnetDir = path.join(toolDir, 'dncs', '2.2.205', os.arch());

Loading…
Cancel
Save