diff --git a/apps/remixdesktop/test/tests/app/gist.test.ts b/apps/remixdesktop/test/tests/app/gist.test.ts index ecda3b8cee..3a7056a8ed 100644 --- a/apps/remixdesktop/test/tests/app/gist.test.ts +++ b/apps/remixdesktop/test/tests/app/gist.test.ts @@ -1,11 +1,11 @@ import { NightwatchBrowser } from 'nightwatch' const gist_id = '02a847917a6a7ecaf4a7e0d4e68715bf' -module.exports = { +const tests = { before: function (browser: NightwatchBrowser, done: VoidFunction) { done() }, - 'start gist': function (browser: NightwatchBrowser) { + 'start gist': !function (browser: NightwatchBrowser) { browser .waitForElementVisible('*[data-id="remixIdeIconPanel"]', 10000) .waitForElementVisible('*[data-id="landingPageImportFromGist"]') @@ -26,4 +26,8 @@ module.exports = { .openFile('contracts/3_Ballot.sol') .end() } +} + +module.exports = { + ...process.platform.startsWith('win')?{}:tests } \ No newline at end of file