diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml index 9658b0fd55..b5b3d12673 100644 --- a/.azure-pipelines.yml +++ b/.azure-pipelines.yml @@ -121,10 +121,10 @@ jobs: displayName: Lint - script: make test displayName: Run tests - - script: sudo apt-get update && sudo apt-get install libgconf-2-4 -y - displayName: Install integration test dependencies - - script: xvfb-run --auto-servernum --server-args='-screen 0, 1600x900x24' make integration-linux - displayName: Run integration tests + # - script: sudo apt-get update && sudo apt-get install libgconf-2-4 -y + # displayName: Install integration test dependencies + # - script: xvfb-run --auto-servernum --server-args='-screen 0, 1600x900x24' make integration-linux + # displayName: Run integration tests - bash: | sudo chown root:root / sudo apt-get update && sudo apt-get install -y snapd diff --git a/spec/integration/helpers/utils.ts b/spec/integration/helpers/utils.ts index 3d3a225a49..ee138be56e 100644 --- a/spec/integration/helpers/utils.ts +++ b/spec/integration/helpers/utils.ts @@ -1,16 +1,15 @@ import { Application } from "spectron"; -import * as path from "path" let appPath = "" switch(process.platform) { case "win32": - appPath = path.join("./dist/win-unpacked/Lens.exe") + appPath = "./dist/win-unpacked/Lens.exe" break case "linux": - appPath = path.join("./dist/linux-unpacked/kontena-lens") + appPath = "./dist/linux-unpacked/kontena-lens" break case "darwin": - appPath = path.join("./dist/mac/LensDev.app/Contents/MacOS/LensDev") + appPath = "./dist/mac/LensDev.app/Contents/MacOS/LensDev" break }