2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 10:50:21 +08:00

fix the build

This commit is contained in:
Régis Hanol 2015-06-15 16:02:30 +02:00
parent 2d03163be0
commit 50e705a078
4 changed files with 3 additions and 4 deletions

View file

@ -73,6 +73,6 @@ test("recover", function() {
});
test('fancyTitle', function() {
var topic = Topic.create({ siteSettings: { enable_emoji: true }, fancy_title: ":smile: with all the emojis" });
var topic = Topic.create({ fancy_title: ":smile: with all the emojis" });
equal(topic.get('fancyTitle'), "<img src='/images/emoji/undefined/smile.png?v=0' title='smile' alt='smile' class='emoji'> with all the emojis", "supports emojis");
});