I am new to yeoman and all the tools it uses. I have created a test project in yeoman and trying to run the test spec in jasmine. I have installed the jasmine plugin using cmd:
npm install grunt-contrib-jasmine --save-dev
Added a jasmine task in Gruntfile.js
jasmine: {
src: '<%= yeoman.app %>/scripts/{,*/}*.js',
specs: 'test/spec/{,*/}*.js'
},
when i run the jasmine task grunt jasmine i get following error:-
E:\Personal Projects\yeoman-projects\test-app>grunt jasmine
Running "jasmine:src" (jasmine) task
Testing jasmine specs via phantom
ReferenceError: Can't find variable: angular at
..\..\..\E:\Personal%20Projects\yeoman-projects\test-app\app\scripts\app.js:3
ReferenceError: Can't find variable: angular at
..\..\..\E:\Personal%20Projects\yeoman-projects\test-app\app\scripts\controll
ers\main.js:3
Following is my main.js
'use strict';
angular.module('testAppApp')
.controller('MainCtrl', function ($scope) {
$scope.awesomeThings = [
'HTML5 Boilerplate',
'AngularJS',
'Karma'
];
});
and app.js
'use strict';
angular.module('testAppApp', [
'ngRoute'
])
.config(function ($routeProvider) {
$routeProvider
.when('/', {
templateUrl: 'views/main.html',
controller: 'MainCtrl'
})
.otherwise({
redirectTo: '/'
});
});
Am i missing something ?
Thanks, Parikshit
I am new to yeoman and all the tools it uses. I have created a test project in yeoman and trying to run the test spec in jasmine. I have installed the jasmine plugin using cmd:
npm install grunt-contrib-jasmine --save-dev
Added a jasmine task in Gruntfile.js
jasmine: {
src: '<%= yeoman.app %>/scripts/{,*/}*.js',
specs: 'test/spec/{,*/}*.js'
},
when i run the jasmine task grunt jasmine i get following error:-
E:\Personal Projects\yeoman-projects\test-app>grunt jasmine
Running "jasmine:src" (jasmine) task
Testing jasmine specs via phantom
ReferenceError: Can't find variable: angular at
..\..\..\E:\Personal%20Projects\yeoman-projects\test-app\app\scripts\app.js:3
ReferenceError: Can't find variable: angular at
..\..\..\E:\Personal%20Projects\yeoman-projects\test-app\app\scripts\controll
ers\main.js:3
Following is my main.js
'use strict';
angular.module('testAppApp')
.controller('MainCtrl', function ($scope) {
$scope.awesomeThings = [
'HTML5 Boilerplate',
'AngularJS',
'Karma'
];
});
and app.js
'use strict';
angular.module('testAppApp', [
'ngRoute'
])
.config(function ($routeProvider) {
$routeProvider
.when('/', {
templateUrl: 'views/main.html',
controller: 'MainCtrl'
})
.otherwise({
redirectTo: '/'
});
});
Am i missing something ?
Thanks, Parikshit
Share edited Jan 29, 2014 at 19:33 michael 16.4k7 gold badges56 silver badges60 bronze badges asked Jan 13, 2014 at 14:35 ParikshitParikshit 3451 gold badge3 silver badges13 bronze badges 1-
1
This problem can also occur when you include angular from
https://code.angularjs/
. Instead include it locally or from the Google hosted libraries API. – Kevin Beal Commented Apr 21, 2014 at 17:00
2 Answers
Reset to default 9under jasmine src you have to include angular.js. For now you have only included you own scripts. If you are using yeaoman, they are usally in a folder called bower_ponents/angular.
To keep your test files clean you should use options.vendor
for that.
jasmine: {
src: '<%= yeoman.app %>/scripts/{,*/}*.js',
specs: 'test/spec/{,*/}*.js',
vendor: 'path/to/angular.js'
},
See the documentation.
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743603985a4477551.html
评论列表(0条)