- 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>
18 lines
1.0 KiB
Plaintext
18 lines
1.0 KiB
Plaintext
Jake JavaScript build tool
|
|
********************************************************************************
|
|
If no flags are given, Jake looks for a Jakefile or Jakefile.js in the current directory.
|
|
********************************************************************************
|
|
{Usage}: jake [options ...] [env variables ...] target
|
|
|
|
{Options}:
|
|
-f, --jakefile FILE Use FILE as the Jakefile.
|
|
-C, --directory DIRECTORY Change to DIRECTORY before running tasks.
|
|
-q, --quiet Do not log messages to standard output.
|
|
-B, --always-make Unconditionally make all targets.
|
|
-T/-ls, --tasks Display the tasks (matching optional PATTERN) with descriptions, then exit.
|
|
-J, --jakelibdir JAKELIBDIR Auto-import any .jake files in JAKELIBDIR. (default is \'jakelib\')
|
|
-h, --help Display this help message.
|
|
-V/-v, --version Display the Jake version.
|
|
-ar, --allow-rejection Keep running even after unhandled promise rejection.
|
|
|