Skip to content

Commit

Permalink
Fix typo, rename cuttentTime to currentTime (hoppscotch#3053)
Browse files Browse the repository at this point in the history
  • Loading branch information
BKer authored May 23, 2023
1 parent 1fe0b88 commit e77eef1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ pw.env.set("variable", "value");`,
{
name: "Environment: Set timestamp variable",
script: `\n\n// Set timestamp variable
const cuttentTime = Date.now();
pw.env.set("timestamp", cuttentTime.toString());`,
const currentTime = Date.now();
pw.env.set("timestamp", currentTime.toString());`,
},
{
name: "Environment: Set random number variable",
Expand Down

0 comments on commit e77eef1

Please sign in to comment.