mirror of
https://github.com/brendan-ch/project-inter-server.git
synced 2026-04-17 07:50:31 +00:00
Remove support for integration testing mode
- Remove app-integration-test service from Docker Compose - Remove references to integration testing mode from documentation - Clean up CLAUDE.md to reflect current Docker services 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -12,8 +12,6 @@ docker compose run dev
|
|||||||
# Run comprehensive test suite
|
# Run comprehensive test suite
|
||||||
docker compose run test
|
docker compose run test
|
||||||
|
|
||||||
# Run integration tests with test data
|
|
||||||
docker compose run app-integration-tests
|
|
||||||
|
|
||||||
# Generate GraphQL TypeScript types
|
# Generate GraphQL TypeScript types
|
||||||
npm run generate
|
npm run generate
|
||||||
@@ -81,7 +79,6 @@ Currently supports Chapman University (Passio System ID: "263"). Each university
|
|||||||
### Docker Services
|
### Docker Services
|
||||||
- `dev` - Development with hot reload
|
- `dev` - Development with hot reload
|
||||||
- `test` - Unit/integration testing
|
- `test` - Unit/integration testing
|
||||||
- `app-integration-test` - Integration with test data
|
|
||||||
- `redis` - Persistent Redis
|
- `redis` - Persistent Redis
|
||||||
- `redis-no-persistence` - Ephemeral Redis for tests
|
- `redis-no-persistence` - Ephemeral Redis for tests
|
||||||
|
|
||||||
|
|||||||
@@ -26,19 +26,6 @@ services:
|
|||||||
volumes:
|
volumes:
|
||||||
- .:/usr/src/app
|
- .:/usr/src/app
|
||||||
|
|
||||||
app-integration-test:
|
|
||||||
build: .
|
|
||||||
command: npm run start:dev integration-testing
|
|
||||||
ports:
|
|
||||||
- "4000:4000"
|
|
||||||
depends_on:
|
|
||||||
- redis-no-persistence
|
|
||||||
environment:
|
|
||||||
REDIS_URL: redis://redis-no-persistence:6379
|
|
||||||
|
|
||||||
volumes:
|
|
||||||
- .:/usr/src/app
|
|
||||||
|
|
||||||
test:
|
test:
|
||||||
build: .
|
build: .
|
||||||
command: npm run test
|
command: npm run test
|
||||||
|
|||||||
Reference in New Issue
Block a user