You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please help me with the below code . I am unable to resolve error and my Unit case is not running. Pasting code below. Your help is highly appreciated.
describe('memberCtrl', function() {
beforeEach(module('testApp'));
var $controller,scope,home;
beforeEach(inject(function(_$controller_,$rootScope){
$controller = _$controller_;
scope = $rootScope.$new();
}));
describe('testing controller', function() {
it('memberCtrl is defined', function() {
var home = $controller('memberCtrl', { $scope: scope});
expect(home.mobDropDown).toBe(false);
});
});
});
ERROR:
Chrome 73.0.3683 (Windows 7.0.0) memberCtrl testing controller memberCtrl is defined
FAILED
Error: [$injector:unpr] http://errors.angularjs.org/1.5.8/$injector/unpr?p0=APP_VERSIO
at node_modules/angular/angular.min.js:6:412
at node_modules/angular/angular.min.js:43:174
at Object.d [as get] (node_modules/angular/angular.min.js:40:432)
at node_modules/angular/angular.min.js:43:236
at d (node_modules/angular/angular.min.js:40:432)
at e (node_modules/angular/angular.min.js:41:158)
at Object.invoke (node_modules/angular/angular.min.js:41:243)
at node_modules/angular/angular.min.js:43:396
at q (node_modules/angular/angular.min.js:7:355)
at Object.cb [as injector] (node_modules/angular/angular.min.js:43:375)
TypeError: $controller is not a function
at <Jasmine>
at UserContext.<anonymous> (test/spec/memberCtrl-spec.js:27:20)
at <Jasmine>
Chrome 73.0.3683 (Windows 7.0.0) ERROR
{
"message": "An error was thrown in afterAll\nUncaught Error: [$location:nobase] http://err
"str": "An error was thrown in afterAll\nUncaught Error: [$location:nobase] http://errors.
}
Chrome 73.0.3683 (Windows 7.0.0): Executed 1 of 1 (1 FAILED) ERROR (0.113 secs / 0.07 secs)
The text was updated successfully, but these errors were encountered:
Please help me with the below code . I am unable to resolve error and my Unit case is not running. Pasting code below. Your help is highly appreciated.
app.js
Controller file :
Spec File
ERROR:
The text was updated successfully, but these errors were encountered: