0
コンポーネントのいくつかのテストをまとめようとしています。私はテスト時にコンポーネントコントローラにアクセスするには?
describe(`selecting an item`,() => {
let element, $scope;
beforeEach(module('my-app'))
beforeEach(inject(($compile, $rootScope) => {
$scope = $rootScope;
element = $compile(`
<item-selector parent-id="pid">
</item-selector>
`)($scope)
//call $ctrl.activate() on the component's controller
}))
})
次item-selector
用コントローラがactivate()
メソッドを持っています。テストからどのように呼び出すことができますか? $scope
には参照が含まれていないようです。