Skip to content

Commit f753cd2

Browse files
committed
Update unit tests for VALIDATION_DOCUMENTATION_URL to reflect correct Drupal documentation link
- Modified the test for VALIDATION_DOCUMENTATION_URL.drupal to check for 'Drupal.pdf' instead of an empty string, ensuring accurate validation of documentation links.
1 parent 5214008 commit f753cd2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/tests/unit/utilities/constants.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ describe('utilities/constants', () => {
124124
expect(VALIDATION_DOCUMENTATION_URL.sitecore).toContain('sitecore.pdf');
125125
expect(VALIDATION_DOCUMENTATION_URL.contentful).toContain('contentful.pdf');
126126
expect(VALIDATION_DOCUMENTATION_URL.wordpress).toBe('');
127-
expect(VALIDATION_DOCUMENTATION_URL.drupal).toBe('');
127+
expect(VALIDATION_DOCUMENTATION_URL.drupal).toContain('Drupal.pdf');
128128
expect(VALIDATION_DOCUMENTATION_URL.aem).toContain('AEM');
129129
});
130130

0 commit comments

Comments
 (0)