You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Enable TypeScript checking for test files
* Enable TypeScript checking for e2e tests
Added tests/e2e/ to typecheck pipeline.
Created test-worker/types.ts defining response types for test
infrastructure endpoints. All tests now use proper SDK types from
@repo/shared for SDK operations and test-worker types for test
infrastructure.
Removed non-null assertions with proper type guards. Found and fixed
bugs where tests used wrong field names (contextId vs id, processId
vs id) that were masked by inline types.
* Fix incorrect assertions
* Use public Process interface correctly
* Revert enum usage
* Enrich interpreter error
* Fix TypeScript build output paths
Build output was going to dist/src/ instead of dist/ due to
rootDir: "." in tsconfig, breaking Docker container startup
which expects dist/index.js.
Split tsconfig into separate build and typecheck configs.
Build emits src only to dist/, typecheck includes tests.
0 commit comments