From d40a40c625ca8d248e4f4170e855e8c7cd820758 Mon Sep 17 00:00:00 2001 From: bunsenstraat Date: Mon, 2 Sep 2024 17:24:46 +0200 Subject: [PATCH] no git server on windows --- apps/remixdesktop/test/tests/app/git-ui.test.ts | 2 +- apps/remixdesktop/test/tests/app/git-ui_2.test.ts | 2 +- apps/remixdesktop/test/tests/app/git-ui_3.test.ts | 2 +- apps/remixdesktop/test/tests/app/git-ui_4.test.ts | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/remixdesktop/test/tests/app/git-ui.test.ts b/apps/remixdesktop/test/tests/app/git-ui.test.ts index 149b5b96d6..f0707e52cb 100644 --- a/apps/remixdesktop/test/tests/app/git-ui.test.ts +++ b/apps/remixdesktop/test/tests/app/git-ui.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 : {} } diff --git a/apps/remixdesktop/test/tests/app/git-ui_2.test.ts b/apps/remixdesktop/test/tests/app/git-ui_2.test.ts index fec1c5ec95..9c03b83852 100644 --- a/apps/remixdesktop/test/tests/app/git-ui_2.test.ts +++ b/apps/remixdesktop/test/tests/app/git-ui_2.test.ts @@ -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 : {} } \ No newline at end of file diff --git a/apps/remixdesktop/test/tests/app/git-ui_3.test.ts b/apps/remixdesktop/test/tests/app/git-ui_3.test.ts index cf8679a226..f7cd58b2ed 100644 --- a/apps/remixdesktop/test/tests/app/git-ui_3.test.ts +++ b/apps/remixdesktop/test/tests/app/git-ui_3.test.ts @@ -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 : {} } diff --git a/apps/remixdesktop/test/tests/app/git-ui_4.test.ts b/apps/remixdesktop/test/tests/app/git-ui_4.test.ts index 6344e16252..b44f2c0e12 100644 --- a/apps/remixdesktop/test/tests/app/git-ui_4.test.ts +++ b/apps/remixdesktop/test/tests/app/git-ui_4.test.ts @@ -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 : {} } \ No newline at end of file