mirror of
https://github.com/jsdoc/jsdoc.git
synced 2025-12-08 19:46:11 +00:00
9 lines
325 B
JavaScript
9 lines
325 B
JavaScript
(function() {
|
|
var docSet = testhelpers.getDocSetFromFile('test/cases/aliasglobal.js'),
|
|
log = docSet.getByLongname('log')[0];
|
|
|
|
test('When a symbol is documented as a static member of <global> it\'s scope is "global" and not "static".', function() {
|
|
assert.equal(log.scope, 'global');
|
|
});
|
|
|
|
})(); |