feat: render interactive ashen fields world

This commit is contained in:
Bastian Wagner
2026-08-19 08:25:42 +02:00
parent fce03e220d
commit 1e2bfe6e4b
21 changed files with 1933 additions and 17 deletions

View File

@@ -8,9 +8,13 @@ import { routes } from './app.routes';
describe('App', () => {
let character: WritableSignal<CharacterResponse | null>;
let currentLocation: WritableSignal<null>;
let selectedConnection: WritableSignal<null>;
beforeEach(async () => {
character = signal<CharacterResponse | null>(null);
currentLocation = signal(null);
selectedConnection = signal(null);
await TestBed.configureTestingModule({
imports: [AppShellComponent],
@@ -18,7 +22,7 @@ describe('App', () => {
provideRouter([]),
{
provide: WorldStore,
useValue: { character },
useValue: { character, currentLocation, selectedConnection },
},
],
}).compileComponents();