Add the BFF Api/Tests skeleton (.NET 10, ASP.NET Core minimal API, xUnit + WebApplicationFactory) and a failing test asserting GET /health returns 200 with a Healthy body. The endpoint does not exist yet — the test fails with NotFound, establishing red before the implementation. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
28 lines
300 B
Plaintext
28 lines
300 B
Plaintext
# .NET build output
|
|
bin/
|
|
obj/
|
|
[Dd]ebug/
|
|
[Rr]elease/
|
|
*.user
|
|
|
|
# Test results / coverage
|
|
[Tt]est[Rr]esults/
|
|
*.trx
|
|
coverage*.json
|
|
coverage*.xml
|
|
*.coverage
|
|
|
|
# Rider / VS / VS Code
|
|
.idea/
|
|
.vs/
|
|
.vscode/
|
|
|
|
# Node / Angular (added as the frontend lands)
|
|
node_modules/
|
|
dist/
|
|
.angular/
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|