Merge pull request #164 from anko/parse-tags-fix

Add failing test for helpers.parseTags
This commit is contained in:
Christopher Jeffrey (JJ) 2015-08-05 18:35:09 -07:00
commit 41a354c571
1 changed files with 5 additions and 0 deletions

5
test/helpers.js Normal file
View File

@ -0,0 +1,5 @@
var blessed = require('../'),
screen = blessed.screen();
console.log(blessed.helpers.parseTags('{red-fg}This should be red.{/red-fg}'));
console.log(blessed.helpers.parseTags('{green-bg}This should have a green background.{/green-bg}'));