mirror of
https://github.com/jsdoc/jsdoc.git
synced 2025-12-08 19:46:11 +00:00
This first part of the testing framework upgrade: - enhances the jsdoc script to allow switching to debug mode from the command line - uses Jasmine to run tests - adds flexibility to run tests from multiple root directories - does automatic test discovery, so test files can just be created, dropped in an appropriate folder, and run without having to explicity add it to the test runner - cleans up the test directory layout - incorporates env.rhino.js which should make it easier to test templates - is incomplete: this is just a savepoint. About 1/3 of the tests have been converted. The rest are still run through the old testrunner
36 lines
1.1 KiB
JavaScript
36 lines
1.1 KiB
JavaScript
describe("common/events", function() {
|
|
var common = {events: require('common/events')};
|
|
|
|
it('should exist', function() {
|
|
expect(common.events).toBeDefined();
|
|
expect(typeof common.events).toEqual("object");
|
|
});
|
|
|
|
it('should export a "on" function.', function() {
|
|
expect(common.events.on).toBeDefined();
|
|
expect(typeof common.events.on).toEqual("function");
|
|
});
|
|
|
|
it('should export a "fire" function.', function() {
|
|
expect(common.events.fire).toBeDefined();
|
|
expect(typeof common.events.fire).toEqual("function");
|
|
});
|
|
|
|
it('should export a "removeListener" function.', function() {
|
|
expect(common.events.removeListener).toBeDefined();
|
|
expect(typeof common.events.removeListener).toEqual("function");
|
|
});
|
|
|
|
it('The "on" function attaches a handler to an object that can be fired.', function() {
|
|
var target = {},
|
|
result = false;
|
|
|
|
target.on = common.events.on;
|
|
target.fire = common.events.fire;
|
|
|
|
target.on('test', function() { result = true; });
|
|
target.fire('test');
|
|
|
|
expect(result).toEqual(true);
|
|
});
|
|
}); |