 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>
		
			
				
	
	
		
			103 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			103 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| 'use strict'
 | |
| 
 | |
| const vendors = require('./vendors.json')
 | |
| 
 | |
| const env = process.env
 | |
| 
 | |
| // Used for testing only
 | |
| Object.defineProperty(exports, '_vendors', {
 | |
|   value: vendors.map(function (v) {
 | |
|     return v.constant
 | |
|   })
 | |
| })
 | |
| 
 | |
| exports.name = null
 | |
| exports.isPR = null
 | |
| exports.id = null
 | |
| 
 | |
| vendors.forEach(function (vendor) {
 | |
|   const envs = Array.isArray(vendor.env) ? vendor.env : [vendor.env]
 | |
|   const isCI = envs.every(function (obj) {
 | |
|     return checkEnv(obj)
 | |
|   })
 | |
| 
 | |
|   exports[vendor.constant] = isCI
 | |
| 
 | |
|   if (!isCI) {
 | |
|     return
 | |
|   }
 | |
| 
 | |
|   exports.name = vendor.name
 | |
|   exports.isPR = checkPR(vendor)
 | |
|   exports.id = vendor.constant
 | |
| })
 | |
| 
 | |
| exports.isCI = !!(
 | |
|   env.CI !== 'false' && // Bypass all checks if CI env is explicitly set to 'false'
 | |
|   (env.BUILD_ID || // Jenkins, Cloudbees
 | |
|     env.BUILD_NUMBER || // Jenkins, TeamCity
 | |
|     env.CI || // Travis CI, CircleCI, Cirrus CI, Gitlab CI, Appveyor, CodeShip, dsari, Cloudflare Pages/Workers
 | |
|     env.CI_APP_ID || // Appflow
 | |
|     env.CI_BUILD_ID || // Appflow
 | |
|     env.CI_BUILD_NUMBER || // Appflow
 | |
|     env.CI_NAME || // Codeship and others
 | |
|     env.CONTINUOUS_INTEGRATION || // Travis CI, Cirrus CI
 | |
|     env.RUN_ID || // TaskCluster, dsari
 | |
|     exports.name ||
 | |
|     false)
 | |
| )
 | |
| 
 | |
| function checkEnv (obj) {
 | |
|   // "env": "CIRRUS"
 | |
|   if (typeof obj === 'string') return !!env[obj]
 | |
| 
 | |
|   // "env": { "env": "NODE", "includes": "/app/.heroku/node/bin/node" }
 | |
|   if ('env' in obj) {
 | |
|     // Currently there are no other types, uncomment when there are
 | |
|     // if ('includes' in obj) {
 | |
|     return env[obj.env] && env[obj.env].includes(obj.includes)
 | |
|     // }
 | |
|   }
 | |
| 
 | |
|   if ('any' in obj) {
 | |
|     return obj.any.some(function (k) {
 | |
|       return !!env[k]
 | |
|     })
 | |
|   }
 | |
| 
 | |
|   return Object.keys(obj).every(function (k) {
 | |
|     return env[k] === obj[k]
 | |
|   })
 | |
| }
 | |
| 
 | |
| function checkPR (vendor) {
 | |
|   switch (typeof vendor.pr) {
 | |
|     case 'string':
 | |
|       // "pr": "CIRRUS_PR"
 | |
|       return !!env[vendor.pr]
 | |
|     case 'object':
 | |
|       if ('env' in vendor.pr) {
 | |
|         if ('any' in vendor.pr) {
 | |
|           // "pr": { "env": "CODEBUILD_WEBHOOK_EVENT", "any": ["PULL_REQUEST_CREATED", "PULL_REQUEST_UPDATED"] }
 | |
|           return vendor.pr.any.some(function (key) {
 | |
|             return env[vendor.pr.env] === key
 | |
|           })
 | |
|         } else {
 | |
|           // "pr": { "env": "BUILDKITE_PULL_REQUEST", "ne": "false" }
 | |
|           return vendor.pr.env in env && env[vendor.pr.env] !== vendor.pr.ne
 | |
|         }
 | |
|       } else if ('any' in vendor.pr) {
 | |
|         // "pr": { "any": ["ghprbPullId", "CHANGE_ID"] }
 | |
|         return vendor.pr.any.some(function (key) {
 | |
|           return !!env[key]
 | |
|         })
 | |
|       } else {
 | |
|         // "pr": { "DRONE_BUILD_EVENT": "pull_request" }
 | |
|         return checkEnv(vendor.pr)
 | |
|       }
 | |
|     default:
 | |
|       // PR detection not supported for this vendor
 | |
|       return null
 | |
|   }
 | |
| }
 |