Cause
For anyone seeing this, if you have written your own assert function, keep in mind that TypeScript cannot use arrowFunctions for assertions.
See https://github.com/microsoft/TypeScript/issues/34523
Fix
Change your assert function from an arrowFunction to standard function.