Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
jamestalmage committed Mar 6, 2015
1 parent 4c8c7d5 commit c219c8d
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,10 @@ beforeEach(inject(function(_serviceB_, _$rootScope_) {
// Finally - I can start writing tests!!
```

ng-test-utils offers a better way:
All those `beforeEach` statements start to add up as your test count grows.
They clutter the top of all your test files, and distract from what's important.

ng-test-utils seeks to offer a better way:

```javascript
module('myModule');
Expand All @@ -41,7 +44,7 @@ var serviceB, $rootScope, scope = $rootScope.$new();

ng-test-utils automatically generates the rest for you.

To get started, check out the plugins for.
[gulp](https://github.com/jamestalmage/gulp-angular-test-utils)
To get started, check out the plugins for
[gulp](https://github.com/jamestalmage/gulp-angular-test-utils),
[browserify](https://github.com/jamestalmage/browserify-angular-test-utils)
and [karma](https://github.com/jamestalmage/karma-angular-test-utils)

0 comments on commit c219c8d

Please sign in to comment.