no git server on windows

pull/5370/head
bunsenstraat 6 months ago
parent 5a82f0b936
commit d40a40c625
  1. 2
      apps/remixdesktop/test/tests/app/git-ui.test.ts
  2. 2
      apps/remixdesktop/test/tests/app/git-ui_2.test.ts
  3. 2
      apps/remixdesktop/test/tests/app/git-ui_3.test.ts
  4. 2
      apps/remixdesktop/test/tests/app/git-ui_4.test.ts

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

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

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

@ -191,5 +191,5 @@ const tests = {
const useIsoGit = process.argv.includes('--useIsoGit');
module.exports = {
...process.platform.startsWith('linux') || useIsoGit ? tests : {}
...process.platform.startsWith('win') ? {} : process.platform.startsWith('linux') || useIsoGit ? tests : {}
}
Loading…
Cancel
Save