TypeScript/tests/cases/fourslash/navigationBarJsDocCommentWithNoTags.ts
2016-10-11 08:32:37 -07:00

31 lines
652 B
TypeScript

/// <reference path="fourslash.ts"/>
/////** Test */
////export const Test = {}
verify.navigationTree({
"text": "\"navigationBarJsDocCommentWithNoTags\"",
"kind": "module",
"childItems": [
{
"text": "Test",
"kind": "const",
"kindModifiers": "export"
}
]
});
verify.navigationBar([
{
"text": "\"navigationBarJsDocCommentWithNoTags\"",
"kind": "module",
"childItems": [
{
"text": "Test",
"kind": "const",
"kindModifiers": "export"
}
]
}
]);