Skip to content
This repository has been archived by the owner on Mar 26, 2018. It is now read-only.

Commit

Permalink
fix(coffee): remove the semi-colon from the coffee script templates
Browse files Browse the repository at this point in the history
Signed-off-by: Rocky Jaiswal <[email protected]>
  • Loading branch information
rocky-jaiswal authored and btford committed Jul 29, 2013
1 parent 21f00e5 commit cd46aa8
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion templates/coffeescript-min/spec/controller.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ describe 'Controller: <%= _.classify(name) %>Ctrl', () ->
}

it 'should attach a list of awesomeThings to the scope', () ->
expect(scope.awesomeThings.length).toBe 3;
expect(scope.awesomeThings.length).toBe 3
2 changes: 1 addition & 1 deletion templates/coffeescript-min/spec/filter.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ describe 'Filter: <%= _.camelize(name) %>', () ->

it 'should return the input prefixed with "<%= _.camelize(name) %> filter:"', () ->
text = 'angularjs'
expect(<%= _.camelize(name) %> text).toBe ('<%= _.camelize(name) %> filter: ' + text);
expect(<%= _.camelize(name) %> text).toBe ('<%= _.camelize(name) %> filter: ' + text)
2 changes: 1 addition & 1 deletion templates/coffeescript-min/spec/service.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ describe 'Service: <%= _.camelize(name) %>', () ->
<%= _.camelize(name) %> = _<%= _.camelize(name) %>_

it 'should do something', () ->
expect(!!<%= _.camelize(name) %>).toBe true;
expect(!!<%= _.camelize(name) %>).toBe true
2 changes: 1 addition & 1 deletion templates/coffeescript/spec/controller.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ describe 'Controller: <%= _.classify(name) %>Ctrl', () ->
}

it 'should attach a list of awesomeThings to the scope', () ->
expect(scope.awesomeThings.length).toBe 3;
expect(scope.awesomeThings.length).toBe 3
2 changes: 1 addition & 1 deletion templates/coffeescript/spec/filter.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ describe 'Filter: <%= _.camelize(name) %>', () ->

it 'should return the input prefixed with "<%= _.camelize(name) %> filter:"', () ->
text = 'angularjs'
expect(<%= _.camelize(name) %> text).toBe ('<%= _.camelize(name) %> filter: ' + text);
expect(<%= _.camelize(name) %> text).toBe ('<%= _.camelize(name) %> filter: ' + text)
2 changes: 1 addition & 1 deletion templates/coffeescript/spec/service.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ describe 'Service: <%= _.camelize(name) %>', () ->
<%= _.camelize(name) %> = _<%= _.camelize(name) %>_

it 'should do something', () ->
expect(!!<%= _.camelize(name) %>).toBe true;
expect(!!<%= _.camelize(name) %>).toBe true

0 comments on commit cd46aa8

Please sign in to comment.