mirror of
https://github.com/jsdoc/jsdoc.git
synced 2025-12-08 19:46:11 +00:00
8 lines
346 B
JavaScript
8 lines
346 B
JavaScript
(function() {
|
|
var docSet = testhelpers.getDocSetFromFile('test/cases/aliasresolve.js'),
|
|
method = docSet.getByLongname('A.F.method');
|
|
|
|
test('When a local reference has alias, put all members into aliased definition.', function() {
|
|
assert.equal(method.length, 1, 'Local modifications are visible to outside.');
|
|
});
|
|
})(); |