|
|
@@ -8,7 +8,7 @@ describe('Instance Init', function () {
|
|
|
},
|
|
|
_initEvents: jasmine.createSpy(),
|
|
|
_callHook: jasmine.createSpy(),
|
|
|
- _initScope: jasmine.createSpy(),
|
|
|
+ _initState: jasmine.createSpy(),
|
|
|
$mount: jasmine.createSpy()
|
|
|
}
|
|
|
|
|
|
@@ -36,7 +36,7 @@ describe('Instance Init', function () {
|
|
|
|
|
|
it('should call other init methods', function () {
|
|
|
expect(stub._initEvents).toHaveBeenCalled()
|
|
|
- expect(stub._initScope).toHaveBeenCalled()
|
|
|
+ expect(stub._initState).toHaveBeenCalled()
|
|
|
})
|
|
|
|
|
|
it('should call created hook', function () {
|