Set up comprehensive frontend testing infrastructure
- 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>
This commit is contained in:
116
frontend/node_modules/@testing-library/react/package.json
generated
vendored
Normal file
116
frontend/node_modules/@testing-library/react/package.json
generated
vendored
Normal file
@@ -0,0 +1,116 @@
|
||||
{
|
||||
"name": "@testing-library/react",
|
||||
"version": "16.3.0",
|
||||
"description": "Simple and complete React DOM testing utilities that encourage good testing practices.",
|
||||
"main": "dist/index.js",
|
||||
"types": "types/index.d.ts",
|
||||
"module": "dist/@testing-library/react.esm.js",
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
},
|
||||
"scripts": {
|
||||
"prebuild": "rimraf dist",
|
||||
"build": "npm-run-all --parallel build:main build:bundle:main build:bundle:pure",
|
||||
"build:bundle:main": "dotenv -e .bundle.main.env kcd-scripts build -- --bundle --no-clean",
|
||||
"build:bundle:pure": "dotenv -e .bundle.main.env -e .bundle.pure.env kcd-scripts build -- --bundle --no-clean",
|
||||
"build:main": "kcd-scripts build --no-clean",
|
||||
"format": "kcd-scripts format",
|
||||
"install:csb": "npm install",
|
||||
"lint": "kcd-scripts lint",
|
||||
"setup": "npm install && npm run validate -s",
|
||||
"test": "kcd-scripts test",
|
||||
"test:update": "npm test -- --updateSnapshot --coverage",
|
||||
"typecheck": "kcd-scripts typecheck --build types",
|
||||
"validate": "kcd-scripts validate"
|
||||
},
|
||||
"files": [
|
||||
"dist",
|
||||
"dont-cleanup-after-each.js",
|
||||
"pure.js",
|
||||
"pure.d.ts",
|
||||
"types/*.d.ts"
|
||||
],
|
||||
"keywords": [
|
||||
"testing",
|
||||
"react",
|
||||
"ui",
|
||||
"dom",
|
||||
"jsdom",
|
||||
"unit",
|
||||
"integration",
|
||||
"functional",
|
||||
"end-to-end",
|
||||
"e2e"
|
||||
],
|
||||
"author": "Kent C. Dodds <me@kentcdodds.com> (https://kentcdodds.com)",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@babel/runtime": "^7.12.5"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@testing-library/dom": "^10.0.0",
|
||||
"@testing-library/jest-dom": "^5.11.6",
|
||||
"@types/react": "^19.0.0",
|
||||
"@types/react-dom": "^19.0.0",
|
||||
"chalk": "^4.1.2",
|
||||
"dotenv-cli": "^4.0.0",
|
||||
"jest-diff": "^29.7.0",
|
||||
"kcd-scripts": "^13.0.0",
|
||||
"npm-run-all": "^4.1.5",
|
||||
"react": "^19.0.0",
|
||||
"react-dom": "^19.0.0",
|
||||
"rimraf": "^3.0.2",
|
||||
"typescript": "^4.1.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@testing-library/dom": "^10.0.0",
|
||||
"@types/react": "^18.0.0 || ^19.0.0",
|
||||
"@types/react-dom": "^18.0.0 || ^19.0.0",
|
||||
"react": "^18.0.0 || ^19.0.0",
|
||||
"react-dom": "^18.0.0 || ^19.0.0"
|
||||
},
|
||||
"peerDependenciesMeta": {
|
||||
"@types/react": {
|
||||
"optional": true
|
||||
},
|
||||
"@types/react-dom": {
|
||||
"optional": true
|
||||
}
|
||||
},
|
||||
"eslintConfig": {
|
||||
"extends": "./node_modules/kcd-scripts/eslint.js",
|
||||
"parserOptions": {
|
||||
"ecmaVersion": 2022
|
||||
},
|
||||
"globals": {
|
||||
"globalThis": "readonly"
|
||||
},
|
||||
"rules": {
|
||||
"react/prop-types": "off",
|
||||
"react/no-adjacent-inline-elements": "off",
|
||||
"import/no-unassigned-import": "off",
|
||||
"import/named": "off",
|
||||
"testing-library/no-container": "off",
|
||||
"testing-library/no-debugging-utils": "off",
|
||||
"testing-library/no-dom-import": "off",
|
||||
"testing-library/no-unnecessary-act": "off",
|
||||
"testing-library/prefer-explicit-assert": "off",
|
||||
"testing-library/prefer-find-by": "off",
|
||||
"testing-library/prefer-user-event": "off"
|
||||
}
|
||||
},
|
||||
"eslintIgnore": [
|
||||
"node_modules",
|
||||
"coverage",
|
||||
"dist",
|
||||
"*.d.ts"
|
||||
],
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/testing-library/react-testing-library"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/testing-library/react-testing-library/issues"
|
||||
},
|
||||
"homepage": "https://github.com/testing-library/react-testing-library#readme"
|
||||
}
|
||||
Reference in New Issue
Block a user