Skip to content

Commit f5669bb

Browse files
fix: removed entries for testing
1 parent 9ee3115 commit f5669bb

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

src/utils/constants/documentRegistry.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,5 +56,4 @@ export const documentRegistry = {
5656
integrationProcedureManualUpdateMessage:
5757
'https://help.salesforce.com/s/articleView?id=xcloud.os_migrate_update_references_to_integration_procedures_after_migration.htm&type=5',
5858
duplicateCardNameMessage: 'https://help.salesforce.com/s/articleView?id=xcloud.os_clone_a_flexcard.htm&type=5',
59-
testURL: 'https://help.salesforce.com/s/articleView?id=xcloud.os_omnistudio_naming_con.htm&type=5',
6059
};

test/utils/constants/documentRegistry.test.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ describe('DocumentRegistry', () => {
3030
Object.entries(documentRegistry).forEach(([key, url]: [string, string]) => {
3131
it(`should have a valid URL for ${key}`, async function () {
3232
// Increase timeout for network requests
33-
this.timeout(15000);
33+
this.timeout(20000);
3434
const isValid = urlCheckCache.has(url) ? urlCheckCache.get(url) : await checkSalesforceUrlWithPuppeteer(url);
3535
urlCheckCache.set(url, isValid);
3636
expect(isValid, `URL for ${key} (${url}) should be accessible`).to.be.true;
@@ -72,7 +72,6 @@ describe('DocumentRegistry', () => {
7272
'integrationProcedureNameChangeMessage',
7373
'integrationProcedureManualUpdateMessage',
7474
'duplicateCardNameMessage',
75-
'testURL',
7675
];
7776

7877
expectedKeys.forEach((key) => {

0 commit comments

Comments
 (0)