@@ -5,7 +5,7 @@ exports[`classic components basic 1`] = `
55
66 export default Component.extend({
77 } );
8-
8+
99~~~~~~~~~~
1010foo
1111~~~~~~~~~~
1515 export default Component.extend({
1616 tagName : \\" \\ "
1717 } );
18-
18+
1919~~~~~~~~~~
2020<div ...attributes>
2121 foo
2222</div>
2323=========="
2424`;
2525
26- exports[`handles \`ariaRole\` correctly 1`] = `
26+ exports[`classic components handles \`ariaRole\` correctly 1`] = `
2727" ==========
2828
2929 export default Component.extend({
3030 ariaRole: 'button',
3131 });
32-
32+
3333~~~~~~~~~~
3434foo
3535~~~~~~~~~~
3939 export default Component.extend({
4040 tagName: \\" \\",
4141 });
42-
42+
4343~~~~~~~~~~
4444<div role =\\"button\\" ...attributes>
4545 foo
4646</div>
4747=========="
4848`;
4949
50- exports[`handles \`attributeBindings\` correctly 1`] = `
50+ exports[`classic components handles \`attributeBindings\` correctly 1`] = `
5151" ==========
5252
5353 export default Component.extend({
5454 attributeBindings: ['foo', 'bar:baz'],
5555 });
56-
56+
5757~~~~~~~~~~
5858foo
5959~~~~~~~~~~
6363 export default Component.extend({
6464 tagName: \\" \\",
6565 });
66-
66+
6767~~~~~~~~~~
6868<div foo = { {this.foo }} baz = { {this.bar }} ...attributes>
6969 foo
@@ -77,7 +77,7 @@ exports[`classic components handles \`classNameBindings\` correctly 1`] = `
7777 export default Component.extend({
7878 classNameBindings: ['a:b', 'x:y:z', 'foo::bar'],
7979 });
80-
80+
8181~~~~~~~~~~
8282foo
8383~~~~~~~~~~
8787 export default Component.extend({
8888 tagName: \\" \\",
8989 });
90-
90+
9191~~~~~~~~~~
9292<div class =\\"{{if this.a \\"b\\"}} { {if this.x \\"y\\" \\"z\\"}} { {unless this.foo \\"bar\\"}} \\" ...attributes>
9393 foo
@@ -101,7 +101,7 @@ exports[`classic components handles \`classNames\` correctly 1`] = `
101101 export default Component.extend({
102102 classNames: ['foo', 'bar:baz'],
103103 });
104-
104+
105105~~~~~~~~~~
106106foo
107107~~~~~~~~~~
111111 export default Component.extend({
112112 tagName: \\" \\",
113113 });
114-
114+
115115~~~~~~~~~~
116116<div class =\\"foo bar:baz\\" ...attributes>
117117 foo
@@ -125,7 +125,7 @@ exports[`classic components handles \`elementId\` correctly 1`] = `
125125 export default Component.extend({
126126 elementId: 'qux',
127127 });
128-
128+
129129~~~~~~~~~~
130130foo
131131~~~~~~~~~~
135135 export default Component.extend({
136136 tagName: \\" \\",
137137 });
138-
138+
139139~~~~~~~~~~
140140<div id =\\"qux\\" ...attributes>
141141 foo
@@ -149,7 +149,7 @@ exports[`classic components handles \`hasComponentCSS\` option correctly 1`] = `
149149 export default Component.extend({
150150 classNames: ['foo', 'bar:baz'],
151151 });
152-
152+
153153~~~~~~~~~~
154154foo
155155~~~~~~~~~~
159159 export default Component.extend({
160160 tagName: \\" \\",
161161 });
162-
162+
163163~~~~~~~~~~
164164<div class =\\"{{styleNamespace}} foo bar:baz\\" ...attributes>
165165 foo
@@ -173,7 +173,7 @@ exports[`classic components handles single \`classNames\` item correctly 1`] = `
173173 export default Component.extend({
174174 classNames: ['foo'],
175175 });
176-
176+
177177~~~~~~~~~~
178178foo
179179~~~~~~~~~~
183183 export default Component.extend({
184184 tagName: \\" \\",
185185 });
186-
186+
187187~~~~~~~~~~
188188<div class =\\"foo\\" ...attributes>
189189 foo
@@ -223,7 +223,7 @@ exports[`classic components replaces existing \`tagName\` 1`] = `
223223 export default Component.extend({
224224 tagName: 'span',
225225 });
226-
226+
227227~~~~~~~~~~
228228foo
229229~~~~~~~~~~
233233 export default Component.extend({
234234 tagName: \\" \\",
235235 });
236-
236+
237237~~~~~~~~~~
238238<span ...attributes>
239239 foo
@@ -246,7 +246,7 @@ exports[`native components basic 1`] = `
246246
247247 export default class FooComponent extends Component {
248248 }
249-
249+
250250~~~~~~~~~~
251251foo
252252~~~~~~~~~~
257257 @tagName(\\"\\")
258258 export default class FooComponent extends Component {
259259 }
260-
260+
261261~~~~~~~~~~
262262<div ...attributes>
263263 foo
@@ -334,7 +334,7 @@ exports[`native components handles \`@attributeBindings\` correctly 1`] = `
334334 @attributeBindings('foo', 'bar:baz')
335335 export default class FooComponent extends Component {
336336 }
337-
337+
338338~~~~~~~~~~
339339foo
340340~~~~~~~~~~
346346 @tagName(\\" \\")
347347 export default class FooComponent extends Component {
348348 }
349-
349+
350350~~~~~~~~~~
351351<div foo = { {this.foo }} baz = { {this.bar }} ...attributes>
352352 foo
@@ -449,7 +449,7 @@ exports[`native components handles \`elementId\` correctly 1`] = `
449449 export default class FooComponent extends Component {
450450 elementId = 'qux';
451451 }
452-
452+
453453~~~~~~~~~~
454454foo
455455~~~~~~~~~~
459459 import { tagName } from \\" @ember-decorators/component\\";
460460 @tagName(\\"\\")
461461 export default class FooComponent extends Component { }
462-
462+
463463~~~~~~~~~~
464464<div id =\\"qux\\" ...attributes>
465465 foo
@@ -557,7 +557,7 @@ exports[`native components replaces existing \`tagName\` 1`] = `
557557 @tagName('span')
558558 export default class FooComponent extends Component {
559559 }
560-
560+
561561~~~~~~~~~~
562562foo
563563~~~~~~~~~~
569569 @tagName(\\" \\")
570570 export default class FooComponent extends Component {
571571 }
572-
572+
573573~~~~~~~~~~
574574<span ...attributes>
575575 foo
0 commit comments