File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
packages/selenium-side-runner/src Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -252,7 +252,7 @@ function runProject(project) {
252252 return Promise . reject (
253253 new Error (
254254 `The project ${
255- project . name
255+ project . name
256256 } has no test suites defined, create a suite using the IDE.`
257257 )
258258 )
@@ -305,7 +305,7 @@ function runProject(project) {
305305 writeJSFile (
306306 path . join ( projectPath , sanitizeFileName ( suite . name ) ) ,
307307 `// This file was generated using Selenium IDE\nconst tests = require("./commons.js");${
308- code . globalConfig
308+ code . globalConfig
309309 } ${ suite . code } ${ cleanup } `
310310 )
311311 } else if ( suite . tests . length ) {
@@ -319,7 +319,7 @@ function runProject(project) {
319319 sanitizeFileName ( test . name )
320320 ) ,
321321 `// This file was generated using Selenium IDE\nconst tests = require("../commons.js");${
322- code . globalConfig
322+ code . globalConfig
323323 } ${ test . code } `
324324 )
325325 } )
You can’t perform that action at this time.
0 commit comments