Projemde varsayılan hizmet birimi testini çalıştırmaya çalışıyorum (GitHub'daki Angular Seed projesinden alınmıştır), ancak "modül tanımlı değil" hatasını almaya devam ediyorum.
Referans verilen JavaScript dosyalarının sırasına göre bir şey olabileceğini okudum , ancak işe yarayacak gibi görünmüyorum, bu yüzden umarım biriniz yardımcı olabilir.
Test için yapılandırmam şöyle görünüyor:
basePath = '../';
dosyalar = [
'public / javascripts / lib / jquery-1.8.2.js',
'public / javascripts / lib / angular.js',
'public / javascripts / lib / angular- .js',
'public / app.js ',
' public / controllers / .js ',
' public / directives.js ',
' public / filters.js ',
' public / services.js ',
JASMINE,
JASMINE_ADAPTER,
' public / javascripts / lib / angular-mocks. js ',
' test / birim / *. js '];autoWatch = true;
tarayıcılar = ['Chrome'];
junitReporter = {outputFile: 'test_out / unit.xml', suite: 'unit'};
Hizmet şuna benzer:
angular.module('myApp.services', []).
value('version', '0.1');
Test şuna benzer:
'use strict';
describe('service', function() {
beforeEach(module('myApp.services'));
describe('version', function() {
it('should return current version', inject(function(version) {
expect(version).toEqual('0.1');
}));
});
});
Ve testi testacular aracılığıyla çalıştırırken oluşan hata şudur:
ReferenceError: modül tanımlanmadı