node: Fix missing bot_data initialization.

This was making the frontend tests fail.
This commit is contained in:
Tim Abbott 2017-05-24 19:59:29 -07:00
parent 4ec13d3693
commit 74ad90533d
1 changed files with 1 additions and 0 deletions

View File

@ -33,6 +33,7 @@ global.patch_builtin('_', patched_underscore);
var bot_data = require('js/bot_data.js');
bot_data.initialize();
// Our startup logic should have added Bot 0 from page_params.
assert.equal(bot_data.get('bot0@zulip.com').full_name, 'Bot 0');