@bigbinary/neeto-playwright-commons 1.8.22 → 1.8.23
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.
- package/index.cjs.js +6 -4
- package/index.cjs.js.map +1 -1
- package/index.js +7 -5
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.cjs.js
CHANGED
|
@@ -10047,8 +10047,8 @@ const MEMBER_TEXTS = {
|
|
|
10047
10047
|
agent: "Agent",
|
|
10048
10048
|
};
|
|
10049
10049
|
const INTEGRATIONS_TEXTS = {
|
|
10050
|
-
connectHeader: (integration) => `Connect your ${
|
|
10051
|
-
connectedHeader: (integration) => `You are connected to ${
|
|
10050
|
+
connectHeader: (integration) => `Connect your ${integration} account`,
|
|
10051
|
+
connectedHeader: (integration) => `You are connected to ${integration}`,
|
|
10052
10052
|
};
|
|
10053
10053
|
const SLACK_WEB_TEXTS = {
|
|
10054
10054
|
signOut: "Sign out",
|
|
@@ -10369,9 +10369,11 @@ class IntegrationBase {
|
|
|
10369
10369
|
this.integrationCard = this.page.getByTestId(INTEGRATION_SELECTORS.integrationCard(integration));
|
|
10370
10370
|
this.integrationRouteIndex = integrationRouteIndex || "";
|
|
10371
10371
|
this.connectHeader =
|
|
10372
|
-
connectHeader ||
|
|
10372
|
+
connectHeader ||
|
|
10373
|
+
INTEGRATIONS_TEXTS.connectHeader(neetoCist.humanize(this.integration));
|
|
10373
10374
|
this.connectedHeader =
|
|
10374
|
-
connectedHeader ||
|
|
10375
|
+
connectedHeader ||
|
|
10376
|
+
INTEGRATIONS_TEXTS.connectedHeader(neetoCist.humanize(this.integration));
|
|
10375
10377
|
}
|
|
10376
10378
|
}
|
|
10377
10379
|
|