Skip to content

Commit 3f3bba3

Browse files
committed
fix tests
1 parent 94c493e commit 3f3bba3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/config.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,13 @@ const Config = require('../lib/core/config.js');
33
const Plugins = require('../lib/core/plugins.js');
44
const assert = require('assert');
55
const TestLogger = require('../lib/tests/test_logger.js');
6+
const Events = require('../lib/core/events');
67

78
describe('embark.Config', function () {
89
let config = new Config({
910
env: 'myenv',
10-
configDir: './test/test1/config/'
11+
configDir: './test/test1/config/',
12+
events: new Events()
1113
});
1214
config.plugins = new Plugins({plugins: {}});
1315
config.logger = new TestLogger({});

0 commit comments

Comments
 (0)