Jeff Williams 5f578e803b migrate from old, vendored Jasmine to jasmine package (#1602)
Plus some miscellaneous cleanup.
2019-01-21 19:38:07 -08:00

57 lines
2.0 KiB
JavaScript

/* global jsdoc */
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');
});
});
});