在我的角度测试中,我一直得到Error: Unexpected request: GET 'some/rails/view.html'
我正在使用konacha进行测试,它使用摩卡而不是茉莉。该项目是基于一个Rails应用程序,这就是使用konacha的原因。
下面是一个非常简单的示例测试,用于检查控制器是否在Angular应用中定义:
describe "ShowAccountCtrl", ->
beforeEach angular.mock.module('APP_NAME')
beforeEach inject(($rootScope, $controller) ->
@scope = $rootScope.$new()
@ctrl = $controller 'ShowAccountCtrl',
$scope: @scope
)
it "should be defined", ->
expect(@ctrl).to.not.be.undefined
我看过一些关于$httpBackend.when('GET', /.html$/).passThrough();
的东西,但konacha似乎没有类似于passThrough()
的方法
这些问题总是发生在$httpBackend.flush()
上。
以前有人解决过这个问题吗?是否有一种方法可以忽略对rails模板的请求,以便我可以专注于测试控制器的功能?
这是因为Konacha不支持与Rails视图的任何集成。解决方案是手动加载angular的$templateCache
,就像你在使用模板和资源管道时所做的那样。要做到这一点,您需要使您的测试具有ERB预处理器(例如some_spec.js.coffee.erb
)。
beforeEach inject ($templateCache) ->
template = '/app/templates/view.html'
content = """
<%= IO.read(Rails.root.join('/app/templates/view.html')) %>
"""
$templateCache.put template, content