在我的代码中有一行:
var contentWidth = angular.element(document.querySelector('.content'))[0].clientWidth;
运行应用程序时它工作正常,但在单元测试时出现错误:
TypeError: 'undefined' is not an object (evaluating 'angular.element(document.querySelector('.content'))[0].clientWidth')
如何解决这个问题?