@checksum-ai/runtime 1.0.63 → 1.0.65

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,5 +1,7 @@
1
1
  import { RunMode, getChecksumConfig } from "@checksum-ai/runtime";
2
2
 
3
+ require("dotenv").config({ path: `${__dirname}/.env` });
4
+
3
5
  export default getChecksumConfig({
4
6
  /**
5
7
  * Checksum Run mode. See Readme for more info
@@ -20,13 +22,13 @@ export default getChecksumConfig({
20
22
  * Insert the account's username that will be used
21
23
  * to login into your testing environment
22
24
  */
23
- username: "<username>",
25
+ username: "<username>",
24
26
 
25
- /**
26
- * Insert the account's password that will be used
27
- * to login into your testing environment
28
- */
29
- password: "<password>",
27
+ /**
28
+ * Insert the account's password that will be used
29
+ * to login into your testing environment
30
+ */
31
+ password: "<password>",
30
32
 
31
33
  options: {
32
34
  /**