run isogot tests on other OS

pull/4991/head
Your Name 4 months ago
parent 011f032c69
commit 022b486b79
  1. 4
      apps/remixdesktop/test/tests/app/git-ui.test.ts
  2. 3
      apps/remixdesktop/test/tests/app/git-ui_2.test.ts
  3. 3
      apps/remixdesktop/test/tests/app/git-ui_3.test.ts

@ -186,8 +186,8 @@ const tests = {
.waitForElementVisible('*[data-id="treeViewLitreeViewItemtest2.txt"]')
},
}
const useIsoGit = process.argv.includes('--useIsoGit');
module.exports = {
...process.platform.startsWith('linux') ? tests : {}
...process.platform.startsWith('linux') || useIsoGit ? tests : {}
}

@ -164,6 +164,7 @@ const tests = {
}
}
const useIsoGit = process.argv.includes('--useIsoGit');
module.exports = {
...process.platform.startsWith('linux') ? tests : {}
...process.platform.startsWith('linux') || useIsoGit ? tests : {}
}

@ -132,6 +132,7 @@ const tests = {
}
const useIsoGit = process.argv.includes('--useIsoGit');
module.exports = {
...process.platform.startsWith('linux') ? tests : {}
...process.platform.startsWith('linux') || useIsoGit ? tests : {}
}

Loading…
Cancel
Save