Cmd Is Not a Constructor Dependency Issue
stack trace: TypeError: Cmd is not a constructor
at /usr/local/workplace/dendron/packages/plugin-core/out/src/workspace.js:476:25
Issue in integration tests
Ran into this issue when attempting to use
import { expect } from "../testUtilsv2";
The fix was to split up expect
into its own file and use import { expect } from "../expect";
instead.
Backlinks