 aacb45156b
			
		
	
	aacb45156b
	
	
	
		
			
			- Install Jest for unit testing with React Testing Library - Install Playwright for end-to-end testing - Configure Jest with proper TypeScript support and module mapping - Create test setup files and utilities for both unit and e2e tests Components: * Jest configuration with coverage thresholds * Playwright configuration with browser automation * Unit tests for LoginForm, AuthContext, and useSocketIO hook * E2E tests for authentication, dashboard, and agents workflows * GitHub Actions workflow for automated testing * Mock data and API utilities for consistent testing * Test documentation with best practices Testing features: - Unit tests with 70% coverage threshold - E2E tests with API mocking and user journey testing - CI/CD integration for automated test runs - Cross-browser testing support with Playwright - Authentication system testing end-to-end 🚀 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
		
			
				
	
	
		
			118 lines
		
	
	
		
			4.1 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			118 lines
		
	
	
		
			4.1 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| "use strict";
 | |
| 
 | |
| Object.defineProperty(exports, "__esModule", {
 | |
|   value: true
 | |
| });
 | |
| exports.getSuggestedQuery = getSuggestedQuery;
 | |
| var _domAccessibilityApi = require("dom-accessibility-api");
 | |
| var _matches = require("./matches");
 | |
| var _getNodeText = require("./get-node-text");
 | |
| var _config = require("./config");
 | |
| var _roleHelpers = require("./role-helpers");
 | |
| var _labelHelpers = require("./label-helpers");
 | |
| const normalize = (0, _matches.getDefaultNormalizer)();
 | |
| function escapeRegExp(string) {
 | |
|   return string.replace(/[.*+\-?^${}()|[\]\\]/g, '\\$&'); // $& means the whole matched string
 | |
| }
 | |
| function getRegExpMatcher(string) {
 | |
|   return new RegExp(escapeRegExp(string.toLowerCase()), 'i');
 | |
| }
 | |
| function makeSuggestion(queryName, element, content, {
 | |
|   variant,
 | |
|   name
 | |
| }) {
 | |
|   let warning = '';
 | |
|   const queryOptions = {};
 | |
|   const queryArgs = [['Role', 'TestId'].includes(queryName) ? content : getRegExpMatcher(content)];
 | |
|   if (name) {
 | |
|     queryOptions.name = getRegExpMatcher(name);
 | |
|   }
 | |
|   if (queryName === 'Role' && (0, _roleHelpers.isInaccessible)(element)) {
 | |
|     queryOptions.hidden = true;
 | |
|     warning = `Element is inaccessible. This means that the element and all its children are invisible to screen readers.
 | |
|     If you are using the aria-hidden prop, make sure this is the right choice for your case.
 | |
|     `;
 | |
|   }
 | |
|   if (Object.keys(queryOptions).length > 0) {
 | |
|     queryArgs.push(queryOptions);
 | |
|   }
 | |
|   const queryMethod = `${variant}By${queryName}`;
 | |
|   return {
 | |
|     queryName,
 | |
|     queryMethod,
 | |
|     queryArgs,
 | |
|     variant,
 | |
|     warning,
 | |
|     toString() {
 | |
|       if (warning) {
 | |
|         console.warn(warning);
 | |
|       }
 | |
|       let [text, options] = queryArgs;
 | |
|       text = typeof text === 'string' ? `'${text}'` : text;
 | |
|       options = options ? `, { ${Object.entries(options).map(([k, v]) => `${k}: ${v}`).join(', ')} }` : '';
 | |
|       return `${queryMethod}(${text}${options})`;
 | |
|     }
 | |
|   };
 | |
| }
 | |
| function canSuggest(currentMethod, requestedMethod, data) {
 | |
|   return data && (!requestedMethod || requestedMethod.toLowerCase() === currentMethod.toLowerCase());
 | |
| }
 | |
| function getSuggestedQuery(element, variant = 'get', method) {
 | |
|   // don't create suggestions for script and style elements
 | |
|   if (element.matches((0, _config.getConfig)().defaultIgnore)) {
 | |
|     return undefined;
 | |
|   }
 | |
| 
 | |
|   //We prefer to suggest something else if the role is generic
 | |
|   const role = element.getAttribute('role') ?? (0, _roleHelpers.getImplicitAriaRoles)(element)?.[0];
 | |
|   if (role !== 'generic' && canSuggest('Role', method, role)) {
 | |
|     return makeSuggestion('Role', element, role, {
 | |
|       variant,
 | |
|       name: (0, _domAccessibilityApi.computeAccessibleName)(element, {
 | |
|         computedStyleSupportsPseudoElements: (0, _config.getConfig)().computedStyleSupportsPseudoElements
 | |
|       })
 | |
|     });
 | |
|   }
 | |
|   const labelText = (0, _labelHelpers.getLabels)(document, element).map(label => label.content).join(' ');
 | |
|   if (canSuggest('LabelText', method, labelText)) {
 | |
|     return makeSuggestion('LabelText', element, labelText, {
 | |
|       variant
 | |
|     });
 | |
|   }
 | |
|   const placeholderText = element.getAttribute('placeholder');
 | |
|   if (canSuggest('PlaceholderText', method, placeholderText)) {
 | |
|     return makeSuggestion('PlaceholderText', element, placeholderText, {
 | |
|       variant
 | |
|     });
 | |
|   }
 | |
|   const textContent = normalize((0, _getNodeText.getNodeText)(element));
 | |
|   if (canSuggest('Text', method, textContent)) {
 | |
|     return makeSuggestion('Text', element, textContent, {
 | |
|       variant
 | |
|     });
 | |
|   }
 | |
|   if (canSuggest('DisplayValue', method, element.value)) {
 | |
|     return makeSuggestion('DisplayValue', element, normalize(element.value), {
 | |
|       variant
 | |
|     });
 | |
|   }
 | |
|   const alt = element.getAttribute('alt');
 | |
|   if (canSuggest('AltText', method, alt)) {
 | |
|     return makeSuggestion('AltText', element, alt, {
 | |
|       variant
 | |
|     });
 | |
|   }
 | |
|   const title = element.getAttribute('title');
 | |
|   if (canSuggest('Title', method, title)) {
 | |
|     return makeSuggestion('Title', element, title, {
 | |
|       variant
 | |
|     });
 | |
|   }
 | |
|   const testId = element.getAttribute((0, _config.getConfig)().testIdAttribute);
 | |
|   if (canSuggest('TestId', method, testId)) {
 | |
|     return makeSuggestion('TestId', element, testId, {
 | |
|       variant
 | |
|     });
 | |
|   }
 | |
|   return undefined;
 | |
| } |