disable headless

pull/4486/head
bunsenstraat 10 months ago
parent 10c58cc5e0
commit a7b6b38516
  1. 2
      apps/remix-ide-e2e/nightwatch.ts
  2. 4
      apps/remix-ide-e2e/src/tests/workspace_git.test.ts

@ -33,7 +33,7 @@ module.exports = {
'window-size=2560,1440',
'start-fullscreen',
'--no-sandbox',
'--headless',
//'--headless',
'--verbose',
'--user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36'
]

@ -258,8 +258,10 @@ module.exports = {
'Should clone a repository with submodules #group4': function (browser: NightwatchBrowser) {
browser
.captureBrowserConsoleLogs((event) => {
.captureBrowserExceptions((event) => {
console.log('>>> Exception:', event);
}).captureBrowserConsoleLogs((event) => {
console.log('>>> Console:', event);
})
.clickLaunchIcon('filePanel')
.waitForElementVisible('[data-id="workspaceMenuDropdown"]')

Loading…
Cancel
Save