mirror of
https://github.com/gundb/panic-server.git
synced 2026-04-15 03:00:16 -04:00
Fix failing tests
A beforeEach was setting up a fake test, and it didn't include the `emit` method expected by `stack.js`.
This commit is contained in:
@@ -6,7 +6,8 @@ var stack = require('../../src/framework/stack');
|
||||
|
||||
describe('The stack', function () {
|
||||
var obj = {
|
||||
on: function noop() {}
|
||||
on: function noop() {},
|
||||
emit: function () {}
|
||||
};
|
||||
|
||||
describe('push method', function () {
|
||||
|
||||
Reference in New Issue
Block a user