pull/1754/head
filip mertens 3 years ago
parent f62b831b3e
commit ef00058c5f
  1. 2
      apps/remix-ide-e2e/nightwatch.ts
  2. 6
      apps/remix-ide-e2e/src/buildGroupTests.js

@ -42,7 +42,7 @@ module.exports = {
javascriptEnabled: true,
acceptSslCerts: true,
'goog:chromeOptions': {
args: ['window-size=2560,1440', 'start-fullscreen', '--no-sandbox']
args: ['window-size=2560,1440', 'start-fullscreen', '--no-sandbox', '--headless']
}
}
},

@ -0,0 +1,6 @@
const testFolder = './apps/remix-ide-e2e/src/tests/'
const fs = require('fs')
fs.readdirSync(testFolder).forEach(file => {
console.log(file)
})
Loading…
Cancel
Save