【发布时间】:2018-08-29 11:56:56
【问题描述】:
我正在使用https://bootstrap-tagsinput.github.io/bootstrap-tagsinput/examples/ 处理标签选择。该库使用 Bloodhound 作为建议引擎,如这些示例所示。
在我的 angular2+ 组件测试中,我调用的是 $el.focus()。 $el 是我使用 bootstrap-tagsinput 的输入字段。
在 focus() 事件之后,我调用了 1000 毫秒的超时,然后像这样对 ajax 响应进行存根...
const request = jasmine.Ajax.requests.mostRecent();
request.respondWith(response);
问题是,CircleCI 中的测试是flaky,它们在本地通过(仅使用浏览器时)。在 CI 中,它们有时工作,有时不工作。当我删除超时(我很想取消)时,测试根本不起作用。这是因为调用jasmine.Ajax.requests.mostRecent() 返回undefined。
当我尝试在本地终端中运行整个 Angular 套件时,测试总是失败。感觉就像 Bloodhound 的 ajax 调用根本没有被触发,或者它被其他东西吞没了。这是我的全套测试服……
describe('Component', () => {
let $el: JQuery;
beforeEach(() => {
jasmine.Ajax.install();
});
afterEach(() => {
jasmine.Ajax.uninstall();
});
describe('filters with different roles', () => {
it('should load and select project filter optionsr', () => {
setCurrentUser({ role: ['some role'] });
$el = instantiateComponent();
const response = {
responseText: '[{ "id":1, "name":"Nice name"}]',
status: 200,
};
$el.find('input[placeholder="Project(s)"]').focus();
runTimeouts(1000)
// the focus triggered an Ajax request to /projects.json
const request = jasmine.Ajax.requests.mostRecent();
request.respondWith(response); // this fails because request sometimes is undefined.
// I then test for UI changes here
});
});
});
我做错了什么?有没有办法在没有超时的情况下确保测试的一致性?
【问题讨论】:
标签: ajax angular karma-jasmine bloodhound bootstrap-tags-input