File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11{
22 "name" : " pie" ,
3- "version" : " 10.6.2 " ,
3+ "version" : " 10.6.3 " ,
44 "description" : " The Portable Interaction Elements framework CLI" ,
55 "preferGlobal" : true ,
66 "bin" : {
102102 "marked-terminal" : " ^2.0.0" ,
103103 "minimist" : " ^1.2.0" ,
104104 "ora" : " ^1.2.0" ,
105- "pie-catalog-client" : " ^2.3.0 " ,
105+ "pie-catalog-client" : " ^2.3.1 " ,
106106 "pie-controller" : " ^3.3.0" ,
107107 "pie-player" : " ^3.4.0" ,
108108 "pie-support-less" : " PieLabs/pie-support-less#master" ,
Original file line number Diff line number Diff line change 11import { expect } from 'chai' ;
22
33describe ( 'declaration' , ( ) => {
4-
54 let mod = require ( '../../../lib/code-gen' ) ;
65
76 describe ( 'ElementDeclaration' , ( ) => {
87 describe ( 'js' , ( ) => {
98 it ( 'returns a custom element declaration' , ( ) => {
109 let d = new mod . ElementDeclaration ( 'my-tag' ) ;
11- expect ( d . js ) . to . eql ( `import MyTag from 'my-tag';\nif(!customElements.get('my-tag')){\ncustomElements.define('my-tag', MyTag);\n}` ) ;
10+ expect ( d . js ) . to . eql (
11+ `import MyTag from 'my-tag';\nif(!customElements.get('my-tag')){\ncustomElements.define('my-tag', MyTag);\n}`
12+ ) ;
1213 } ) ;
1314 } ) ;
1415 } ) ;
15- } ) ;
16+ } ) ;
You can’t perform that action at this time.
0 commit comments