We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b510bdc + 97384ab commit 0caf71dCopy full SHA for 0caf71d
packages/webdoc-parser/test/lang-ts.js
@@ -50,6 +50,11 @@ describe("@webdoc/parser.LanguageIntegration{@lang ts}", function() {
50
expect(symbolInitProperty.meta.defaultValue).to.equal("9");
51
expect(symbolInitProperty.comment).to.not.equal("");
52
expect(symbolInitProperty.meta.readonly).to.equal(true);
53
+
54
+ const symbolClassProperty = findSymbol("ClassName.classProperty", symtree);
55
56
+ expect(symbolClassProperty.meta.dataType).to.not.equal(undefined);
57
+ expect(symbolClassProperty.meta.dataType[0]).to.equal("number");
58
});
59
60
it("should parse interfaces correctly", function() {
0 commit comments