Fix typo, rename cuttentTime to currentTime (#3053)

This commit is contained in:
Bart Kerkvliet
2023-05-23 22:38:01 +02:00
committed by GitHub
parent 1fe0b8861d
commit e77eef1532

View File

@@ -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",