core: fix config test by removing model field expectation

This commit is contained in:
Dax Raad
2025-09-27 03:10:01 -04:00
parent e54ec45002
commit d644e0b8a7

View File

@@ -12,7 +12,6 @@ test("loads config with defaults when no files exist", async () => {
fn: async () => {
const config = await Config.get()
expect(config.username).toBeDefined()
expect(config.model).toBeDefined()
},
})
})