Errors Encountered
Cmd is not a constructor
From Cmd Is Not a Constructor Dependency Issue
Go to text ā
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.
Children