Jeff Williams 617b3236bf Replace old, vendored Jasmine with current npm package.
JSDoc-specific test functions are now properties of a `jsdoc` global, not a `jasmine` global.

Also updates license files to reflect the fact that we no longer vendor anything.
2019-05-12 15:10:38 -07:00

56 lines
2.0 KiB
JavaScript

describe('When a getter or setter is part of a class', () => {
const docSet = jsdoc.getDocSetFromFile('test/fixtures/getset.js');
describe('in an object literal', () => {
const name = docSet.getByLongname('Person#name');
const age = docSet.getByLongname('Person#age');
it('should have a doclet with the correct longname', () => {
expect(name.length).toBe(2);
expect(age.length).toBe(1);
});
it('should have a doclet with the correct name', () => {
expect(name[0].name).toBe('name');
expect(name[1].name).toBe('name');
expect(age[0].name).toBe('age');
});
it('should have a doclet with the correct kind', () => {
expect(name[0].kind).toBe('member');
expect(name[1].kind).toBe('member');
expect(age[0].kind).toBe('member');
});
it('should have a doclet with the correct memberof', () => {
expect(name[0].memberof).toBe('Person');
expect(name[1].memberof).toBe('Person');
expect(age[0].memberof).toBe('Person');
});
});
describe('in an ES 2015 class', () => {
const docSet2 = jsdoc.getDocSetFromFile('test/fixtures/getset2.js');
const location = docSet2.getByLongname('Employee#location');
it('should have a doclet with the correct longname', () => {
expect(location.length).toBe(2);
});
it('should have a doclet with the correct name', () => {
expect(location[0].name).toBe('location');
expect(location[1].name).toBe('location');
});
it('should have a doclet with the correct kind', () => {
expect(location[0].kind).toBe('member');
expect(location[1].kind).toBe('member');
});
it('should have a doclet with the correct memberof', () => {
expect(location[0].memberof).toBe('Employee');
expect(location[1].memberof).toBe('Employee');
});
});
});