We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6bac4c6 commit 4a96b4cCopy full SHA for 4a96b4c
commands/init.js
@@ -15,9 +15,8 @@ function create_ltconfig_file(args) {
15
let cv=9.6
16
if("cv" in args){
17
cv=args["cv"]
18
- }else{
19
-
20
}
+
21
let config =parseInt(cv)>=10?require('./utils/default_config_10.js'):require('./utils/default_config_9.js')
22
config.run_settings.npm_dependencies.cypress=cv.toString()
23
let content = JSON.stringify(config, null, 3);
@@ -74,7 +73,6 @@ module.exports = function (args) {
74
73
create_ltconfig_file(args);
75
create_base_reporter_config_file(args);
76
if ("cv" in args){
77
- console.log("cv is ",args["cv"])
78
if (parseInt(args["cv"])>=10){
79
create_custom_support_file(args);
80
0 commit comments