【发布时间】:2019-10-21 05:53:18
【问题描述】:
模板版本:
@stencil/core@1.7.0
笑话版:
"jest": "24.8.0"
当前行为:
我正在尝试将输入元素集中在按钮单击上。
效果很好,但是在尝试使用 npm test 测试功能时,jest 会抛出 TypeError 说 focus 不是函数。
对于所有手动事件调用,例如 click、blur、focus,都会重复此错误。
因此测试用例没有通过。
预期行为:
它不应该抛出错误。
重现步骤: 我提供了一个相关的演示代码以供检查。 相关代码:
demo-btn.tsx
import { Component, h, Element } from '@stencil/core';
@Component({
tag: 'demo-btn',
styleUrl: 'demo-btn.css',
shadow: true
})
export class DemoBtnComponent {
@Element() el!: HTMLElement;
private inputEl?: HTMLElement;
onClick = () => {
if (this.inputEl) {
this.inputEl.focus();
}
}
render() {
return (
<div class="input-container">
<input ref={el => this.inputEl = el} type="text" />
<button onClick={this.onClick}>
Click Me
</button>
</div>
);
}
}
demo-btn.spec.tsx
import { newSpecPage } from '@stencil/core/testing';
import { DemoBtnComponent } from './demo-btn';
describe('my-component', () => {
it('should focus input el on btn click', async ()=> {
const page = await newSpecPage({
components: [DemoBtnComponent],
html: '<demo-btn></demo-btn>',
});
const btn = page.root.shadowRoot.querySelector('button')
btn.click(); // Throws error after this line
await page.waitForChanges();
expect(true).toBeTruthy(); // For sake of completion
});
});
任何帮助将不胜感激。
【问题讨论】:
标签: javascript jestjs stenciljs