Removed dummy tests

This commit is contained in:
litetex 2020-04-04 19:25:06 +02:00
parent a5cce9bf9f
commit 5411b6342a

View File

@ -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());