Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,4 @@ jobs:
run: npm run build

- name: Run backend tests
run: npm run test:backend || echo "Backend tests not yet configured"
run: npm run test:backend
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,6 @@ coverage/
# Deployment
deploy/
deploy.tar.gz

# Serena (AIエージェント用ローカル設定。各自の環境に閉じるため追跡しない)
.serena/
1 change: 0 additions & 1 deletion .serena/.gitignore

This file was deleted.

68 changes: 0 additions & 68 deletions .serena/project.yml

This file was deleted.

2 changes: 2 additions & 0 deletions codecov.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
codecov:
require_ci_to_pass: yes

# 暫定設定: 表示レンジ・閾値は現状に合わせた値。実測ベースへの調整は
# docs/refactoring/phase-5-e2e-ci.md で対応する。
coverage:
precision: 2
round: down
Expand Down
3 changes: 2 additions & 1 deletion jest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ const config: Config = {
'/js/modules/'
],
coverageThreshold: {
// Global thresholds (very low since frontend tests don't have coverage yet)
// 暫定値: フロントエンドはまだカバレッジ計測対象外のため非常に低く設定している。
// 実測ベースへの引き上げは docs/refactoring/phase-5-e2e-ci.md で対応する。
global: {
statements: 3,
branches: 1,
Expand Down
4 changes: 2 additions & 2 deletions playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default defineConfig({
workers: process.env.CI ? 1 : undefined,
reporter: 'html',
use: {
baseURL: 'http://localhost:8080',
baseURL: 'http://localhost:3000',
trace: 'on-first-retry',
screenshot: 'only-on-failure',
},
Expand All @@ -22,7 +22,7 @@ export default defineConfig({

webServer: {
command: 'npm run dev',
url: 'http://localhost:8080',
url: 'http://localhost:3000',
reuseExistingServer: !process.env.CI,
timeout: 120000,
},
Expand Down
Loading