- 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>
34 lines
876 B
JavaScript
34 lines
876 B
JavaScript
import { click, dblClick, tripleClick } from '../convenience/click.js';
|
|
import { hover, unhover } from '../convenience/hover.js';
|
|
import { tab } from '../convenience/tab.js';
|
|
import { keyboard } from '../keyboard/index.js';
|
|
import { copy } from '../clipboard/copy.js';
|
|
import { cut } from '../clipboard/cut.js';
|
|
import { paste } from '../clipboard/paste.js';
|
|
import { pointer } from '../pointer/index.js';
|
|
import { clear } from '../utility/clear.js';
|
|
import { deselectOptions, selectOptions } from '../utility/selectOptions.js';
|
|
import { type } from '../utility/type.js';
|
|
import { upload } from '../utility/upload.js';
|
|
|
|
const userEventApi = {
|
|
click,
|
|
dblClick,
|
|
tripleClick,
|
|
hover,
|
|
unhover,
|
|
tab,
|
|
keyboard,
|
|
copy,
|
|
cut,
|
|
paste,
|
|
pointer,
|
|
clear,
|
|
deselectOptions,
|
|
selectOptions,
|
|
type,
|
|
upload
|
|
};
|
|
|
|
export { userEventApi };
|