@bigbinary/neeto-playwright-commons 4.6.4 → 4.6.6
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.d.ts +4 -4
- package/index.js +3 -4
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -4431,7 +4431,7 @@ declare const OTP_EMAIL_PATTERN = "Your login code is";
|
|
|
4431
4431
|
*
|
|
4432
4432
|
*/
|
|
4433
4433
|
declare const SLACK_DEFAULT_CHANNEL = "general";
|
|
4434
|
-
declare const CUSTOM_DOMAIN_SUFFIX = "
|
|
4434
|
+
declare const CUSTOM_DOMAIN_SUFFIX = "neetoautomation.com";
|
|
4435
4435
|
/**
|
|
4436
4436
|
*
|
|
4437
4437
|
* Function to generate Zapier test email address based on the product. It takes the following parameters:
|
|
@@ -4447,7 +4447,7 @@ declare const CUSTOM_DOMAIN_SUFFIX = "aceinvoice.com";
|
|
|
4447
4447
|
*/
|
|
4448
4448
|
declare const ZAPIER_TEST_EMAIL: (product: string) => string;
|
|
4449
4449
|
declare const MAILPIT_BASE_URL = "https://mailpit.neetodeployapp.com";
|
|
4450
|
-
declare const MAILPIT_DOMAIN_NAME = "mail.
|
|
4450
|
+
declare const MAILPIT_DOMAIN_NAME = "mail.neetoautomation.com";
|
|
4451
4451
|
declare const IS_MAILPIT_ENABLED: boolean;
|
|
4452
4452
|
declare const IS_SHADCN_UI: boolean;
|
|
4453
4453
|
declare const mailpitDomainName: () => string;
|
|
@@ -4522,7 +4522,7 @@ declare const DATE_RANGES: {
|
|
|
4522
4522
|
readonly lastYear: "Last year";
|
|
4523
4523
|
readonly lastQuarter: "Last quarter";
|
|
4524
4524
|
};
|
|
4525
|
-
declare const CERTIFICATE_LIMIT_EXCEEDED_REGEXP = "too many certificates \\(\\d+\\) already issued for \"
|
|
4525
|
+
declare const CERTIFICATE_LIMIT_EXCEEDED_REGEXP = "too many certificates \\(\\d+\\) already issued for \"neetoautomation.com\"";
|
|
4526
4526
|
declare const CERTIFICATE_LIMIT_EXCEEDED_MESSAGE = "Certificate limit exceeded for custom domain";
|
|
4527
4527
|
declare const EXPORT_FILE_TYPES: {
|
|
4528
4528
|
readonly pdf: "pdf";
|
|
@@ -5889,7 +5889,7 @@ declare class CustomDomainPage {
|
|
|
5889
5889
|
*
|
|
5890
5890
|
* @example
|
|
5891
5891
|
*
|
|
5892
|
-
* await customDomainPage.validateCustomDomain("custom.
|
|
5892
|
+
* await customDomainPage.validateCustomDomain("custom.neetoautomation.com");
|
|
5893
5893
|
* @endexample
|
|
5894
5894
|
*/
|
|
5895
5895
|
validateCustomDomain: (domain: string) => Promise<void>;
|
package/index.js
CHANGED
|
@@ -323,10 +323,10 @@ const CREDENTIALS = {
|
|
|
323
323
|
};
|
|
324
324
|
const OTP_EMAIL_PATTERN = "Your login code is";
|
|
325
325
|
const SLACK_DEFAULT_CHANNEL = "general";
|
|
326
|
-
const CUSTOM_DOMAIN_SUFFIX = "
|
|
326
|
+
const CUSTOM_DOMAIN_SUFFIX = "neetoautomation.com";
|
|
327
327
|
const ZAPIER_TEST_EMAIL = (product) => `neeto-${product}-zapier-test@${process.env.FASTMAIL_DOMAIN_NAME}`;
|
|
328
328
|
const MAILPIT_BASE_URL = "https://mailpit.neetodeployapp.com";
|
|
329
|
-
const MAILPIT_DOMAIN_NAME = "mail.
|
|
329
|
+
const MAILPIT_DOMAIN_NAME = "mail.neetoautomation.com";
|
|
330
330
|
const IS_MAILPIT_ENABLED = isPresent(process.env.MAILPIT_DOMAIN_NAME);
|
|
331
331
|
const IS_SHADCN_UI = isPresent(process.env.IS_SHADCN_UI);
|
|
332
332
|
const mailpitDomainName = () => process.env.MAILPIT_DOMAIN_NAME || MAILPIT_DOMAIN_NAME;
|
|
@@ -1915,7 +1915,7 @@ const ZAPIER_SELECTORS = {
|
|
|
1915
1915
|
zapToggle: "zap-toggle",
|
|
1916
1916
|
stepBlock: `step-node-${process.env.ZAP_ID}`,
|
|
1917
1917
|
universalTopbar: "universalTopbar",
|
|
1918
|
-
accountsMenu: "
|
|
1918
|
+
accountsMenu: "accounts-menu-summary",
|
|
1919
1919
|
zapToggleCheckbox: "input[type='checkbox']",
|
|
1920
1920
|
};
|
|
1921
1921
|
|
|
@@ -120098,7 +120098,6 @@ class ZapierPage extends IntegrationBase {
|
|
|
120098
120098
|
page: zapierWebPage,
|
|
120099
120099
|
});
|
|
120100
120100
|
await this.zapierWebPage
|
|
120101
|
-
.getByTestId(ZAPIER_SELECTORS.universalTopbar)
|
|
120102
120101
|
.getByTestId(ZAPIER_SELECTORS.accountsMenu)
|
|
120103
120102
|
.waitFor({ timeout: 25_000 });
|
|
120104
120103
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bigbinary/neeto-playwright-commons",
|
|
3
|
-
"version": "4.6.
|
|
3
|
+
"version": "4.6.6",
|
|
4
4
|
"description": "A package encapsulating common playwright code across neeto projects.",
|
|
5
5
|
"repository": "git@github.com:bigbinary/neeto-playwright-commons.git",
|
|
6
6
|
"license": "apache-2.0",
|