@dev-blinq/cucumber_client 1.0.1474-stage → 1.0.1475-stage
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.
|
@@ -12,9 +12,7 @@ function getMixpanelToken() {
|
|
|
12
12
|
return null;
|
|
13
13
|
}
|
|
14
14
|
if (mixPaneltoken && process.env.NODE_ENV_BLINQ === "prod") {
|
|
15
|
-
mixpanelClient = mixpanel.init(mixPaneltoken, {
|
|
16
|
-
debug: true,
|
|
17
|
-
});
|
|
15
|
+
mixpanelClient = mixpanel.init(mixPaneltoken, {});
|
|
18
16
|
console.log("✅Mixpanel client initialized.");
|
|
19
17
|
}
|
|
20
18
|
else {
|
|
@@ -32,7 +32,7 @@ function testStringForRegex(text) {
|
|
|
32
32
|
return false;
|
|
33
33
|
}
|
|
34
34
|
|
|
35
|
-
|
|
35
|
+
const escapeNonPrintables = (text) => {
|
|
36
36
|
if (typeof text !== "string") return text.toString();
|
|
37
37
|
const t = text.replace(/\n/g, "\\n").replace(/\t/g, "\\t"); // .replace(/\|/g, "\\|");
|
|
38
38
|
let result = "";
|
|
@@ -62,7 +62,7 @@ function escapeNonPrintables(text) {
|
|
|
62
62
|
}
|
|
63
63
|
}
|
|
64
64
|
return result;
|
|
65
|
-
}
|
|
65
|
+
};
|
|
66
66
|
|
|
67
67
|
function getCommandContent(command) {
|
|
68
68
|
switch (command.type) {
|