@@ -62,7 +62,13 @@ describe('findAttributeBindings()', () => {
6262 const TESTS = [
6363 [ '' , new Map ( ) ] ,
6464 [ "attributeBindings: ['foo']" , new Map ( [ [ 'foo' , 'foo' ] ] ) ] ,
65- [ "attributeBindings: ['foo:bar', 'BAZ']" , new Map ( [ [ 'bar' , 'foo' ] , [ 'BAZ' , 'BAZ' ] ] ) ] ,
65+ [
66+ "attributeBindings: ['foo:bar', 'BAZ']" ,
67+ new Map ( [
68+ [ 'bar' , 'foo' ] ,
69+ [ 'BAZ' , 'BAZ' ] ,
70+ ] ) ,
71+ ] ,
6672 [ "attributeBindings: ''" , / U n e x p e c t e d ` a t t r i b u t e B i n d i n g s ` v a l u e : ' ' / ] ,
6773 [ 'attributeBindings: 5' , / U n e x p e c t e d ` a t t r i b u t e B i n d i n g s ` v a l u e : 5 / ] ,
6874 [ 'attributeBindings: foo' , / U n e x p e c t e d ` a t t r i b u t e B i n d i n g s ` v a l u e : f o o / ] ,
@@ -122,7 +128,10 @@ describe('findClassNameBindings()', () => {
122128 [ "classNameBindings: ['foo::baz']" , new Map ( [ [ 'foo' , [ null , 'baz' ] ] ] ) ] ,
123129 [
124130 "classNameBindings: ['foo:foo', 'bar:bar']" ,
125- new Map ( [ [ 'foo' , [ 'foo' , null ] ] , [ 'bar' , [ 'bar' , null ] ] ] ) ,
131+ new Map ( [
132+ [ 'foo' , [ 'foo' , null ] ] ,
133+ [ 'bar' , [ 'bar' , null ] ] ,
134+ ] ) ,
126135 ] ,
127136 [ "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 : ' ' / ] ,
128137 [ 'classNameBindings: 5' , / 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 : 5 / ] ,
0 commit comments