File tree Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ const baseGeneralPrompts: GeneralPrompt[] = [
1111 type : "input" ,
1212 name : "gridUrl" ,
1313 message : "GridUrl" ,
14- default : "http://localhost:4444/wd/hub " ,
14+ default : "local " ,
1515 } ,
1616 {
1717 type : "confirm" ,
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import type { TestplaneConfig } from "../types/testplaneConfig";
33export const defaultTestplaneTestsDir = "testplane-tests" ;
44
55const defaultTestplaneConfig : TestplaneConfig = {
6- gridUrl : "http://localhost:4444/wd/hub " ,
6+ gridUrl : "local " ,
77 baseUrl : "http://localhost" ,
88
99 pageLoadTimeout : 0 ,
@@ -14,18 +14,23 @@ const defaultTestplaneConfig: TestplaneConfig = {
1414 sets : {
1515 desktop : {
1616 files : [ `${ defaultTestplaneTestsDir } /**/*.testplane.(t|j)s` ] ,
17- browsers : [ "chrome" ] ,
17+ browsers : [ "chrome" , "firefox" ] ,
1818 } ,
1919 } ,
2020
2121 browsers : {
2222 chrome : {
23- automationProtocol : "devtools" ,
2423 headless : true ,
2524 desiredCapabilities : {
2625 browserName : "chrome" ,
2726 } ,
2827 } ,
28+ firefox : {
29+ headless : true ,
30+ desiredCapabilities : {
31+ browserName : "firefox" ,
32+ } ,
33+ } ,
2934 } ,
3035} ;
3136
You can’t perform that action at this time.
0 commit comments