Preamble
As described in the documentation, function mw.wikibase.getDescription returns an item's description from a Wikibase instance to the linked wiki page.
Problem
The returned text is parsed for wikicode like ''formatting'' or [[wikilink]], but it does not resolve templates, so a fragment like {{Some Template}} is returned like plain text.
It looks like this behavior is inconsistent: why parsing only part of the wikicode and not all?
Proposed solution
Depending on the design choice behind the mw.wikibase.getDescription function, all the text should be returned as raw, or the wikicode should be completely parsed and expanded.
Additionally, regardless the decision, the expected behavior of the function should be explained in the documentation for proper reference to programmers.