Skip to content

Commit 95e4c1e

Browse files
committed
I think everything is green?
1 parent fb96b9b commit 95e4c1e

File tree

3 files changed

+29
-12
lines changed

3 files changed

+29
-12
lines changed

packages/@ember/-internals/glimmer/tests/integration/application/debug-render-tree-test.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -903,7 +903,7 @@ if (ENV._DEBUG_RENDER_TREE) {
903903
name: 'hello-world',
904904
args: { positional: [], named: { name: 'first' } },
905905
instance: null,
906-
template: 'my-app/templates/components/hello-world.hbs',
906+
template: '(unknown template module)',
907907
bounds: this.nodeBounds(this.element!.firstChild),
908908
children: [],
909909
},
@@ -919,7 +919,7 @@ if (ENV._DEBUG_RENDER_TREE) {
919919
name: 'hello-world',
920920
args: { positional: [], named: { name: 'first' } },
921921
instance: null,
922-
template: 'my-app/templates/components/hello-world.hbs',
922+
template: '(unknown template module)',
923923
bounds: this.nodeBounds(this.element!.firstChild),
924924
children: [],
925925
},
@@ -928,7 +928,7 @@ if (ENV._DEBUG_RENDER_TREE) {
928928
name: 'hello-world',
929929
args: { positional: [], named: { name: 'second' } },
930930
instance: null,
931-
template: 'my-app/templates/components/hello-world.hbs',
931+
template: '(unknown template module)',
932932
bounds: this.nodeBounds(this.element!.lastChild),
933933
children: [],
934934
},
@@ -944,7 +944,7 @@ if (ENV._DEBUG_RENDER_TREE) {
944944
name: 'hello-world',
945945
args: { positional: [], named: { name: 'first' } },
946946
instance: null,
947-
template: 'my-app/templates/components/hello-world.hbs',
947+
template: '(unknown template module)',
948948
bounds: this.nodeBounds(this.element!.firstChild),
949949
children: [],
950950
},

packages/@ember/-internals/glimmer/tests/integration/components/template-only-components-test.js

+21-7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
import { moduleFor, RenderingTestCase, classes, runTask } from 'internal-test-helpers';
1+
import {
2+
moduleFor,
3+
RenderingTestCase,
4+
classes,
5+
runTask,
6+
defineComponent,
7+
} from 'internal-test-helpers';
28
import { ENV } from '@ember/-internals/environment';
39
import { setComponentTemplate } from '@glimmer/manager';
410
import { templateOnlyComponent } from '@glimmer/runtime';
@@ -7,13 +13,12 @@ import EmberObject from '@ember/object';
713
import { Component } from '../../utils/helpers';
814
import { backtrackingMessageFor } from '../../utils/debug-stack';
915

10-
class TemplateOnlyComponentsTest extends RenderingTestCase {
11-
registerTemplateOnlyComponent(name, template) {
12-
super.registerComponent(name, { template, ComponentClass: null });
13-
}
14-
}
15-
1616
if (ENV._TEMPLATE_ONLY_GLIMMER_COMPONENTS) {
17+
class TemplateOnlyComponentsTest extends RenderingTestCase {
18+
registerTemplateOnlyComponent(name, template) {
19+
this.owner.register(`component:${name}`, defineComponent(null, template));
20+
}
21+
}
1722
moduleFor(
1823
'Components test: template-only components (glimmer components)',
1924
class extends TemplateOnlyComponentsTest {
@@ -158,6 +163,15 @@ if (ENV._TEMPLATE_ONLY_GLIMMER_COMPONENTS) {
158163
}
159164
);
160165
} else {
166+
class TemplateOnlyComponentsTest extends RenderingTestCase {
167+
registerTemplateOnlyComponent(name, template) {
168+
this.owner.register(
169+
`component:${name}`,
170+
defineComponent(null, template, Component.extend({}))
171+
);
172+
}
173+
}
174+
161175
moduleFor(
162176
'Components test: template-only components (curly components)',
163177
class extends TemplateOnlyComponentsTest {

packages/ember/tests/component_registration_test.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,10 @@ moduleFor(
2121
return;
2222
}
2323

24-
this.add('component:expand-it', defineComponent({}, '<p>hello {{yield}}</p>'));
24+
this.add(
25+
'component:expand-it',
26+
defineComponent({}, '<p>hello {{yield}}</p>', Component.extend({}))
27+
);
2528
this.addTemplate('application', 'Hello world {{#expand-it}}world{{/expand-it}}');
2629

2730
return this.visit('/').then(() => {

0 commit comments

Comments
 (0)