packages/
mizan-runtime/ Framework-agnostic state engine (~150 lines)
Context registry, batched invalidation, fetch primitives
mizan-django/ Django server adapter (was packages/mizan-rpc/adapters/django/)
Codegen moved to mizan-django/generate/
mizan-react/ React adapter (was packages/mizan-csr/adapters/react/)
Removed premature abstractions: mizan-ast, mizan-schema, mizan-rpc,
mizan-csr, mizan-ssr stub packages. The actual architecture is three
concrete packages, not five abstract layers.
mizan-runtime implements the v1 spec: registerContext with params,
scoped invalidation via microtask batching, server-driven invalidation
from mutation responses, mizanFetch for context bundles, mizanCall for
mutations.
264 Django + 33 React tests pass.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
7 lines
248 B
TypeScript
7 lines
248 B
TypeScript
import { vi } from 'vitest'
|
|
import '@testing-library/jest-dom/vitest'
|
|
|
|
// Jest compatibility: existing tests use jest.fn(), jest.spyOn(), jest.mock()
|
|
// Vitest's `vi` object has the same API, so we alias it globally.
|
|
;(globalThis as any).jest = vi
|