Rename service to Patchbay
All checks were successful
check / check (push) Successful in 37s

This commit is contained in:
matamune 2026-05-12 23:18:13 +00:00
parent 816881c2cc
commit 3379abf99b
Signed by: matamune
GPG key ID: 3BB8E7D3B968A324
9 changed files with 57 additions and 36 deletions

View file

@ -91,7 +91,7 @@ describe("feed watcher", () => {
});
test("first poll primes state without emitting old entries", async () => {
const dataDir = await mkdtemp(join(tmpdir(), "git-webhooks-feed-"));
const dataDir = await mkdtemp(join(tmpdir(), "patchbay-feed-"));
const sourcesPath = join(dataDir, "sources.json");
await writeFile(sourcesPath, JSON.stringify({ sources: [source] }), "utf8");
@ -105,7 +105,7 @@ describe("feed watcher", () => {
});
test("later polls emit new entries and release fork sync jobs", async () => {
const dataDir = await mkdtemp(join(tmpdir(), "git-webhooks-feed-"));
const dataDir = await mkdtemp(join(tmpdir(), "patchbay-feed-"));
const sourcesPath = join(dataDir, "sources.json");
const releaseSource: FeedSourceConfig = {
...source,