summaryrefslogtreecommitdiffhomepage
path: root/packages/opencode/test/cli/tui/theme-store.test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/opencode/test/cli/tui/theme-store.test.ts')
-rw-r--r--packages/opencode/test/cli/tui/theme-store.test.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/opencode/test/cli/tui/theme-store.test.ts b/packages/opencode/test/cli/tui/theme-store.test.ts
index 936e3e6f7..9ebfc4320 100644
--- a/packages/opencode/test/cli/tui/theme-store.test.ts
+++ b/packages/opencode/test/cli/tui/theme-store.test.ts
@@ -41,7 +41,7 @@ test("hasTheme checks theme presence", () => {
test("resolveTheme rejects circular color refs", () => {
const item = structuredClone(DEFAULT_THEMES.opencode)
item.defs = {
- ...(item.defs ?? {}),
+ ...item.defs,
one: "two",
two: "one",
}