0
我正在寫一個Ruby gem,我在其中提供了許多角度指令。如何手動測試用CoffeeScript編寫的AngularJS指令和Jasmine測試?
指令是使用以下文件夾結構編寫的,例如,
app
- assets
- javascripts
- components
- dropdown
- dropdown.html
- dropdown.service.coffee
- index.coffee (this has directive code)
spec
- javascripts
- dropdown
- dropdown.service_spec.coffee (jasmine test)
現在既然這是一個寶石,我想保持它,而不是讓它成爲一個Rails應用程序。它會讓人們難以用它作爲寶石
但我想能夠測試指令。我無法自動完成。
我想知道如何通過啓動HTML頁面以本地/手動方式運行這些用coffeescript編寫的Jasmine測試?