diff options
| author | brakon | 2013-09-11 23:54:04 -0600 | 
|---|---|---|
| committer | Pete Bacon Darwin | 2013-09-13 12:34:01 +0100 | 
| commit | f115751d541596e78f1c2e755ea7e1ad7e1a1f8a (patch) | |
| tree | 0649831f005602fc4c4bc43f36d802fa0b7c75a7 /docs | |
| parent | 64e7b7774e3d0cb2e36efe00d550c7e53ec7efa5 (diff) | |
| download | angular.js-f115751d541596e78f1c2e755ea7e1ad7e1a1f8a.tar.bz2 | |
docs(guide/e2e_testing): clarify that .enter searches by ng-model
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/content/guide/dev_guide.e2e-testing.ngdoc | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/docs/content/guide/dev_guide.e2e-testing.ngdoc b/docs/content/guide/dev_guide.e2e-testing.ngdoc index 00339cb4..508ca7f6 100644 --- a/docs/content/guide/dev_guide.e2e-testing.ngdoc +++ b/docs/content/guide/dev_guide.e2e-testing.ngdoc @@ -38,9 +38,9 @@ it('should filter results', function() {  });  </pre>  This scenario describes the requirements of a Buzz Client, specifically, that it should be able to -filter the stream of the user. It starts by entering a value in the 'user' input field, clicking +filter the stream of the user. It starts by entering a value in the input field with ng-model="user", clicking  the only button on the page, and then it verifies that there are 10 items listed. It then enters -'Bees' in the 'filterText' input field and verifies that the list is reduced to a single item. +'Bees' in the input field with ng-model='filterText'  and verifies that the list is reduced to a single item.  The API section below lists the available commands and expectations for the Runner. | 
