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.
2 parents a066589 + 7d1d6b3 commit ed8f9e9Copy full SHA for ed8f9e9
README.md
@@ -23,7 +23,7 @@ export LT_USERNAME=abc
23
export LT_ACCESS_KEY=def
24
25
// The build name whose test session information is to be fetched
26
-export LT_BUILD=Demo
+export LT_BUILD_NAME=Demo
27
28
fetch-Lt-sessions
29
```
index.js
@@ -11,8 +11,8 @@ const fetchSession = async (options) => {
11
}
12
13
// read build name from env
14
- if (!process.env.LT_BUILD) {
15
- console.log(" Please set Build name to env <LT_BUILD>");
+ if (!process.env.LT_BUILD_NAME) {
+ console.log(" Please set Build name to env <LT_BUILD_NAME>");
16
throw new Error("Build name is required");
17
18
0 commit comments