@@ -114,14 +114,14 @@ describe('findClassNames()', () => {
114114describe ( 'findClassNameBindings()' , ( ) => {
115115 const TESTS = [
116116 [ '' , new Map ( ) ] ,
117- [ "classNameBindings: ['foo']" , new Map ( [ [ 'foo' , [ 'foo' , null ] ] ] ) ] ,
118- [ "classNameBindings: ['fooBar']" , new Map ( [ [ 'fooBar' , [ 'foo-bar' , null ] ] ] ) ] ,
119- [ "classNameBindings: ['FOO']" , new Map ( [ [ 'FOO' , [ 'foo' , null ] ] ] ) ] ,
117+ [ "classNameBindings: ['foo']" , / U n s u p p o r t e d n o n - b o o l e a n ` c l a s s N a m e B i n d i n g s ` v a l u e : f o o / ] ,
118+ [ "classNameBindings: ['fooBar']" , / U n s u p p o r t e d n o n - b o o l e a n ` c l a s s N a m e B i n d i n g s ` v a l u e : f o o B a r / ] ,
119+ [ "classNameBindings: ['FOO']" , / U n s u p p o r t e d n o n - b o o l e a n ` c l a s s N a m e B i n d i n g s ` v a l u e : F O O / ] ,
120120 [ "classNameBindings: ['foo:bar']" , new Map ( [ [ 'foo' , [ 'bar' , null ] ] ] ) ] ,
121121 [ "classNameBindings: ['foo:bar:baz']" , new Map ( [ [ 'foo' , [ 'bar' , 'baz' ] ] ] ) ] ,
122122 [ "classNameBindings: ['foo::baz']" , new Map ( [ [ 'foo' , [ null , 'baz' ] ] ] ) ] ,
123123 [
124- "classNameBindings: ['foo', 'bar']" ,
124+ "classNameBindings: ['foo:foo ', 'bar: bar']" ,
125125 new Map ( [ [ 'foo' , [ 'foo' , null ] ] , [ 'bar' , [ 'bar' , null ] ] ] ) ,
126126 ] ,
127127 [ "classNameBindings: ''" , / U n e x p e c t e d ` c l a s s N a m e B i n d i n g s ` v a l u e : ' ' / ] ,
0 commit comments