fix: update integration_test.go to match server.New signature (version, commit args)
All checks were successful
CI / Scraper / Lint (push) Successful in 10s
CI / Scraper / Test (push) Successful in 14s
Release / Scraper / Test (push) Successful in 18s
CI / Scraper / Lint (pull_request) Successful in 18s
Release / UI / Build (push) Successful in 23s
CI / Scraper / Test (pull_request) Successful in 15s
CI / UI / Build (pull_request) Successful in 32s
Release / Scraper / Docker (push) Successful in 55s
CI / Scraper / Docker Push (pull_request) Has been skipped
CI / UI / Docker Push (pull_request) Has been skipped
CI / Scraper / Docker Push (push) Successful in 1m5s
Release / UI / Docker (push) Successful in 1m12s
iOS CI / Build (push) Successful in 4m18s
iOS CI / Build (pull_request) Successful in 4m25s
iOS CI / Test (push) Successful in 8m11s
iOS CI / Test (pull_request) Successful in 8m21s

This commit is contained in:
Admin
2026-03-14 14:25:46 +05:00
parent b11f4ab6b4
commit 7413313100
75 changed files with 16405 additions and 1897 deletions

View File

@@ -93,7 +93,7 @@ func startTestServer(t *testing.T, store storage.Store) string {
log := slog.New(slog.NewTextHandler(os.Stderr, &slog.HandlerOptions{Level: slog.LevelWarn}))
// nopScraper satisfies scraper.NovelScraper without hitting the network.
srv := New(addr, orchestrator.Config{}, nopScraper{}, log, store, "", "af_bella")
srv := New(addr, orchestrator.Config{}, nopScraper{}, log, store, "", "af_bella", "", "")
ctx, cancel := context.WithCancel(context.Background())
t.Cleanup(cancel)