Skip to content

Commit

Permalink
Add :test-suffix to Angular projects
Browse files Browse the repository at this point in the history
  • Loading branch information
leungbk authored and bbatsov committed Jun 15, 2020
1 parent 3eaef60 commit d882b10
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@

### Changes

* [#1540](https://github.com/bbatsov/projectile/pull/1540): Add default `test-suffix` to Angular projects.
* [#1528](https://github.com/bbatsov/projectile/pull/1528): Improve massively the performance of native indexing (it's around 10x faster now).

## 2.1.0 (2020-02-04)
Expand Down
3 changes: 2 additions & 1 deletion projectile.el
Original file line number Diff line number Diff line change
Expand Up @@ -2670,7 +2670,8 @@ test/impl/other files as below:
(projectile-register-project-type 'angular '("angular.json" ".angular-cli.json")
:compile "ng build"
:run "ng serve"
:test "ng test")
:test "ng test"
:test-suffix ".spec")
;; Python
(projectile-register-project-type 'django '("manage.py")
:compile "python manage.py runserver"
Expand Down

0 comments on commit d882b10

Please sign in to comment.