jsdoc/test/specs/documentation/objectpropertykeys.js
Jeff Williams aa0b6c1bfa switch to new-ish ECMAScript syntax
With help from Lebab, plus a lot of manual cleanup. (And more cleanup to come, I'm sure.)
2019-01-15 18:39:10 -08:00

10 lines
274 B
JavaScript

describe('using existing Object properties as object literal keys', () => {
function loadDocSet() {
jasmine.getDocSetFromFile('test/fixtures/objectpropertykeys.js');
}
it('should not crash', () => {
expect(loadDocSet).not.toThrow();
});
});