Skip to content

Commit 7fe71f1

Browse files
Revert "add timezone support"
This reverts commit 2ac03fd.
1 parent 4ffe80b commit 7fe71f1

File tree

3 files changed

+0
-13
lines changed

3 files changed

+0
-13
lines changed

commands/utils/default_config_10.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ module.exports = {
2626
npm_dependencies: {
2727
cypress: "10.5.0",
2828
},
29-
timezone:"",
3029
},
3130
tunnel_settings: {
3231
tunnel: false,

commands/utils/set_args.js

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -448,13 +448,6 @@ function sync_args_from_cmd(args) {
448448
lt_config["run_settings"]["geo_location"] = "";
449449
}
450450

451-
//Check for timezone
452-
if ("timezone" in args) {
453-
lt_config["run_settings"]["timezone"] = args["timezone"];
454-
} else if (!lt_config["run_settings"]["timezone"]) {
455-
lt_config["run_settings"]["timezone"] = "";
456-
}
457-
458451
//Check for stop on failure location
459452
if ("stop_on_failure" in args) {
460453
lt_config["run_settings"]["stop_on_failure"] = true;

index.js

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -250,11 +250,6 @@ const argv = require("yargs")
250250
alias: "accessibility",
251251
describe: "enable accessibility testing for cypress.",
252252
type: "bool",
253-
})
254-
.option("timezone",{
255-
alias: "tz",
256-
describe: "Set custom timezone in machine for cypress.",
257-
type: "string",
258253
});
259254
},
260255
function (argv) {

0 commit comments

Comments
 (0)