作者热门文章
- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
如果我有一个 app.html 模板如下:
<template>
<require from="./MyComponent"></require>
<h1>${message}</h1>
<my-component>test</my-component>
</template>
使用 MyComponent.ts :
export class MyComponent {
myName : string;
}
和 MyComponent.html:
<template>
MyComponent
</template>
下面的单元测试总是会失败:
import {App} from '../../src/app';
import {StageComponent} from 'aurelia-testing';
import {bootstrap} from 'aurelia-bootstrapper';
describe('the app', () => {
var app ;
beforeEach(() => {
app = StageComponent
.withResources('app')
.inView(' <require from="./MyComponent"></require>' +
'<h1>${message}</h1>' +
'<my-component>test</my-component>')
.boundTo(new App());
} );
it('says hello', (done) => {
app.create(bootstrap).then( () => {
var myComponent = document.querySelector('my-component');
expect(myComponent.innerHTML).toContain('MyComponent');
done();
});
});
});
请注意,StageComponent 正确地将模板中的 ${message} 替换为 app.html,但不会创建新的 MyComponent 实例。在浏览器中运行时,生成的 DOM 是:
<h1>Hello World!</h1>
<my-component class="au-target" au-target-id="2">
MyComponent
</my-component>
但是当在测试中通过 StageComponent 运行相同的代码时,生成的 DOM 是:
<h1>Hello World!</h1>
<my-component>test</my-component>
我错过了什么?
最佳答案
不确定,但我认为您需要这样做(或者添加 customElement 是可选的吗?)
import {customElement, bindable} from 'aurelia-framework';
@customElement('my-component')
export class MyComponent {
@bindable myName : string;
}
然后
it("test case", done =>
StageComponent
.withResources("./full/path/to/MyComponent")
.inView("<my-component></my-component>"))
.create(bootstrap)
.then(() => {...})
.then(done);
我不太清楚为什么要在 app.html 中添加相同的 html,这是为了证明它有效,但不适用于组件吗?
或者您要测试的是什么?
关于typescript - Aurelia StageComponent - 如何将子组件渲染到 DOM 树中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39306960/
如果我有一个 app.html 模板如下: ${message} test 使用 MyComponent.ts : export class MyComponent { my
我是一名优秀的程序员,十分优秀!