Skip to content

Commit ad6e67c

Browse files
committed
Merge branch 'master' into develop
2 parents 1e102ce + 654e844 commit ad6e67c

2 files changed

Lines changed: 6 additions & 5 deletions

File tree

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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": {
@@ -102,7 +102,7 @@
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",

test/unit/code-gen/index-test.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
import { expect } from 'chai';
22

33
describe('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+
});

0 commit comments

Comments
 (0)