refactor: remove host options

This commit is contained in:
2026-04-04 14:06:27 +08:00
parent d7d484e4d3
commit 25f9992be6
4 changed files with 6 additions and 17 deletions
+2 -2
View File
@@ -34,10 +34,10 @@ describe('GameHost', () => {
expect(Object.keys(host.state.value.parts).length).toBe(0);
});
it('should have status "running" by default', () => {
it('should have status "created" by default', () => {
const { host } = createTestHost();
expect(host.status.value).toBe('running');
expect(host.status.value).toBe('created');
});
it('should have null activePromptSchema initially', () => {