Files
moltbot/extensions
masatohoshino 86ee4fd9d8 fix(matrix): also pin test imports to matrix-js-sdk subpath
Two companion test files still used the bare matrix-js-sdk import while
the production code in event-helpers.ts had been migrated to the
matrix-js-sdk/lib/matrix.js subpath:

- extensions/matrix/src/matrix/sdk/event-helpers.test.ts (flagged by greptile P2)
- extensions/matrix/src/matrix/client/file-sync-store.test.ts (found via grep
  while addressing the P2)

After this commit, all matrix-js-sdk imports across extensions/matrix/src
go through the same subpath. Verified with:

  grep -rn 'from "matrix-js-sdk"' extensions/matrix/src/ | grep -v lib

returns no results.

Addresses greptile P2 finding on PR #68498.
2026-04-19 15:29:55 -04:00
..