I use jasmine to test my controllers, which I wrote in TypeScript. My unit tests are presented in simple javascript. I get an error when I check my controller where I want to enter a service layout.
Here's what my test looks like:
'use strict'; describe('ConfigCtrl', function(){ var scope, http, location, timeout, $httpBackend, service; beforeEach(angular.mock.module('busybee')); beforeEach(angular.mock.inject(function($rootScope, $http, $location, $timeout, configService, $controller){ scope = $rootScope.$new(); http = $http; location = $location; timeout = $timeout; service = configService; $controller('configCtrl', {$scope: scope, $http: http, $location: location, $timeout: timeout, configService: service}); })); it('should have text = "constructor"', function(){ expect(true).toBe(true); }); });
My applications:
module game { 'use strict'; var busybee = angular.module('busybee', []); busybee.controller('configCtrl', ConfigCtrl); busybee.service('configService', ConfigService); ... ... }
and my TypeScript controller:
module game { 'use strict'; export class ConfigCtrl { static $inject: string[] = ['$scope', '$http', '$location', '$timeout', 'configService']; constructor($scope: ng.IScope, $http: ng.IHttpService, $location: ng.ILocationService, $timeout: ng.ITimeoutService, configService: game.ConfigService) {
When starting karma, I get the following error:
Chrome 28.0.1500 (Linux) ConfigCtrl should have text = "constructor" FAILED TypeError: Cannot read property 'prototype' of undefined at Object.instantiate (/home/david/git/busybee2-client/js/libs/angular/angular.min.js:28:283) at Object.<anonymous> (/home/david/git/busybee2-client/js/libs/angular/angular.min.js:28:494) at Object.d [as invoke] (/home/david/git/busybee2-client/js/libs/angular/angular.min.js:28:174) at /home/david/git/busybee2-client/js/libs/angular/angular.min.js:29:339 at c (/home/david/git/busybee2-client/js/libs/angular/angular.min.js:27:13) at Object.d [as invoke] (/home/david/git/busybee2-client/js/libs/angular/angular.min.js:27:147) at workFn (/home/david/git/busybee2-client/js/libs/angular/angular-mocks.js:1778:20) Error: Declaration Location at Object.window.jasmine.window.inject.angular.mock.inject [as inject] (/home/david/git/busybee2-client/js/libs/angular/angular-mocks.js:1764:25) at null.<anonymous> (/home/david/git/busybee2-client/js/test/ConfigCtrlSpecs.js:9:29) at /home/david/git/busybee2-client/js/test/ConfigCtrlSpecs.js:3:1 Chrome 28.0.1500 (Linux): Executed 1 of 1 (1 FAILED) ERROR (0.329 secs / 0.032 secs)
There seems to be a problem with entering configService , but I have no idea why.
EDIT : added jsfiddle http://jsfiddle.net/Q552U/6/
UPDATE . It seems that the problem is that jasmine has compiled javascript of TypeScript classes in different files. Compiling TypeScript files into a single .js file ( tsc --out dest.js source.ts ) does this for me.