fix: improve merge verification and dashboard behavior

This commit is contained in:
gsxdsm
2026-04-10 18:27:44 -07:00
parent c56e44bff8
commit f7322ab541
20 changed files with 411 additions and 43 deletions

View File

@@ -37,6 +37,10 @@ class MockStore extends EventEmitter {
return "/tmp/fn-1222";
}
getFusionDir(): string {
return "/tmp/fn-1222/.fusion";
}
getDatabase() {
return {
exec: vi.fn(),

View File

@@ -44,6 +44,10 @@ class MockStore extends EventEmitter {
return "/tmp/fn-1224";
}
getFusionDir(): string {
return "/tmp/fn-1224/.fusion";
}
getDatabase() {
return {
exec: vi.fn(),

View File

@@ -43,6 +43,10 @@ class MockStore extends EventEmitter {
return "/tmp/fn-1080";
}
getFusionDir(): string {
return "/tmp/fn-1080/.fusion";
}
getDatabase() {
return {
exec: vi.fn(),

View File

@@ -458,6 +458,10 @@ class MockStoreForRoutes extends EventEmitter {
return "/tmp/fn-944";
}
getFusionDir(): string {
return "/tmp/fn-944/.fusion";
}
getDatabase() {
return {
exec: vi.fn(),

View File

@@ -33,6 +33,10 @@ class MockStore extends EventEmitter {
return "/tmp/fn-679";
}
getFusionDir(): string {
return "/tmp/fn-679/.fusion";
}
getDatabase() {
return {
exec: vi.fn(),

View File

@@ -42,6 +42,10 @@ class MockStore extends EventEmitter {
return this.rootDir;
}
getFusionDir(): string {
return this.rootDir + "/.fusion";
}
getDatabase() {
return {
exec: vi.fn(),

View File

@@ -48,6 +48,10 @@ class MockStore extends EventEmitter {
return process.cwd();
}
getFusionDir(): string {
return process.cwd() + "/.fusion";
}
getDatabase() {
return {
exec: vi.fn(),