From 613a5cc5db77fab8c23e7f43e452c2cd2d1ac8cd Mon Sep 17 00:00:00 2001 From: Valentin Waeselynck Date: Thu, 10 Apr 2014 14:44:22 +0200 Subject: [PATCH] docs(guide/e2e-testing): remove inconsistency in first paragraph Change the "first line of defense" to unit tests, not end-to-end tests. --- docs/content/guide/e2e-testing.ngdoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/guide/e2e-testing.ngdoc b/docs/content/guide/e2e-testing.ngdoc index 290353dd..514c159b 100644 --- a/docs/content/guide/e2e-testing.ngdoc +++ b/docs/content/guide/e2e-testing.ngdoc @@ -12,7 +12,7 @@ is now in maintenance mode. As applications grow in size and complexity, it becomes unrealistic to rely on manual testing to -verify the correctness of new features, catch bugs and notice regressions. End to end tests +verify the correctness of new features, catch bugs and notice regressions. Unit tests are the first line of defense for catching bugs, but sometimes issues come up with integration between components which can't be captured in a unit test. End to end tests are made to find these problems.