Rename withRuntime to withContext
Lint / lint (push) Successful in 39s

This commit is contained in:
Julien Valverdé
2026-07-19 18:44:01 +02:00
parent f22743eefe
commit 1dc8368750
10 changed files with 23 additions and 23 deletions
+2 -2
View File
@@ -31,7 +31,7 @@ describe("View", () => {
return <div>{`${currentCount}:${currentLabel}`}</div>
}).pipe(
Component.withRuntime(runtime.context)
Component.withContext(runtime.context)
)
const view = render(
@@ -67,7 +67,7 @@ describe("View", () => {
return <div>{`${currentItem.label}:${currentFlag ? "on" : "off"}`}</div>
}).pipe(
Component.withRuntime(runtime.context)
Component.withContext(runtime.context)
)
const view = render(