]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/e2e/local-protractor.conf.js
Add ability to update the banner
[github/Chocobozzz/PeerTube.git] / client / e2e / local-protractor.conf.js
index 53edf26f26574c76331616d0c6a3aff5af87335d..5080f2528cedeb112579952d42ad84ca9b14f258 100644 (file)
@@ -7,20 +7,39 @@ exports.config = {
   allScriptsTimeout: 25000,
   specs: ['./src/**/*.e2e-spec.ts'],
 
-  seleniumAddress: 'http://localhost:4444/wd/hub',
+  directConnect: true,
 
-  capabilities: {
-    'browserName': 'firefox',
-    'moz:firefoxOptions': {
-      'args': ["-headless"],
-      "log": {
-        "level": "info" // default is "info"
+  multiCapabilities: [
+    {
+      'browserName': 'firefox',
+      'name': 'Firefox',
+      'moz:firefoxOptions': {
+        binary: '/usr/bin/firefox-developer-edition',
+        // args: ["-headless"],
+        log: {
+          "level": "info" // default is "info"
+        }
       }
+    },
+    {
+      'browserName': 'firefox',
+      'name': 'Firefox ESR',
+      'moz:firefoxOptions': {
+        binary: '/usr/bin/firefox-esr',
+        // args: ["-headless"],
+        log: {
+          "level": "info" // default is "info"
+        }
+      }
+    },
+    {
+      'browserName': 'chrome',
+      'name': 'Chromium'
     }
-  },
+  ],
 
-  // maxSessions: 1,
-  baseUrl: 'http://localhost:3333/',
+  maxSessions: 1,
+  baseUrl: 'http://localhost:3000/',
   framework: 'jasmine',
   jasmineNodeOpts: {
     showColors: true,