8000 Add :test-suffix to Angular projects by leungbk · Pull Request #1540 · bbatsov/projectile · GitHub
[go: up one dir, main page]

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

8000
Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,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