fex
Version:
A simple command line interface that helps you develop and test Angularjs project.
16 lines (14 loc) • 524 B
text/coffeescript
'use strict'
describe "unit:<%- moduleName %>:<%- FEXComponentType %>:<%- FEXComponentFormatName %>",()->
scope= {}
controller= {}
beforeEach module "<%- moduleName %>"
describe "<%- FEXComponentFormatName %>",()->
beforeEach inject ($rootScope, $controller)->
scope = $rootScope.$new()
controller= $controller '<%- FEXComponentFormatName %>','$scope':scope
return
it "# description here#",()->
# TODO
return
return