@@ -709,7 +709,7 @@ var Emoji = function () {
709709 return Emoji ;
710710} ( ) ;
711711
712- var expect$4 = chai . expect ;
712+ var expect$3 = chai . expect ;
713713
714714describe ( 'Emoji Unit test' , function ( ) {
715715 var string = 'I am happy :smile:' ;
@@ -718,14 +718,14 @@ describe('Emoji Unit test', function () {
718718 describe ( 'should pass all tests' , function ( ) {
719719 it ( 'should return a string' , function ( ) {
720720 var emoji = new Emoji ( string , options ) ;
721- expect$4 ( emoji . process ( ) ) . to . be . a ( 'string' ) ;
721+ expect$3 ( emoji . process ( ) ) . to . be . a ( 'string' ) ;
722722 } ) ;
723723
724724 it ( 'should convert a emoji text into emoji' , function ( ) {
725725 var emoji = new Emoji ( string , options ) ;
726726 var emoji2 = new Emoji ( string2 , options ) ;
727- expect$4 ( emoji . process ( ) ) . to . equal ( 'I am happy <span class="emoticon emoticon-smile" title=":smile:"></span>' ) ;
728- expect$4 ( emoji2 . process ( ) ) . to . equal ( 'I am happy <span class="emoticon emoticon-smile" title=":smile:"></span> <span class="emoticon emoticon-+1" title=":+1:"></span>' ) ;
727+ expect$3 ( emoji . process ( ) ) . to . equal ( 'I am happy <span class="emoticon emoticon-smile" title=":smile:"></span>' ) ;
728+ expect$3 ( emoji2 . process ( ) ) . to . equal ( 'I am happy <span class="emoticon emoticon-smile" title=":smile:"></span> <span class="emoticon emoticon-+1" title=":+1:"></span>' ) ;
729729 } ) ;
730730 } ) ;
731731} ) ;
@@ -802,7 +802,7 @@ var Plunker = function (_Base) {
802802 return Plunker ;
803803} ( Base ) ;
804804
805- var expect$3 = chai . expect ;
805+ var expect$4 = chai . expect ;
806806
807807describe ( 'Class Plunker => unit test' , function ( ) {
808808 it ( 'should return a valid plunked embedding url' , function ( ) {
@@ -819,11 +819,11 @@ describe('Class Plunker => unit test', function () {
819819 output = _plunker$process2 [ 0 ] ;
820820 embeds = _plunker$process2 [ 1 ] ;
821821
822- expect$3 ( output ) . to . be . a ( 'string' ) ;
823- expect$3 ( embeds ) . to . be . a ( 'array' ) ;
822+ expect$4 ( output ) . to . be . a ( 'string' ) ;
823+ expect$4 ( embeds ) . to . be . a ( 'array' ) ;
824824
825- expect$3 ( embeds [ 0 ] . index ) . to . equal ( 33 ) ;
825+ expect$4 ( embeds [ 0 ] . index ) . to . equal ( 33 ) ;
826826
827- expect$3 ( embeds [ 0 ] . text . replace ( / \t | \n / gi, '' ) ) . to . equal ( '<div class="ejs-embed ejs-plunker"><iframe class="ne-plunker" src="http://embed.plnkr.co/nVCmukG5abpi1Y4ZHkrq" height="500"></iframe></div>' ) ;
827+ expect$4 ( embeds [ 0 ] . text . replace ( / \t | \n / gi, '' ) ) . to . equal ( '<div class="ejs-embed ejs-plunker"><iframe class="ne-plunker" src="http://embed.plnkr.co/nVCmukG5abpi1Y4ZHkrq" height="500"></iframe></div>' ) ;
828828 } ) ;
829829} ) ;
0 commit comments