aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorBraden Shepherdson2013-07-23 10:42:34 -0700
committerPete Bacon Darwin2013-07-23 20:33:01 +0100
commitdfa83475a5c8d5156b09a009b690e8677fb97e0a (patch)
tree3503608d77e9fa50571048dffe8d96154d0ceb5d /docs
parent6476aed7626fa7b4adefa99c5cb4a86ed371835c (diff)
downloadangular.js-dfa83475a5c8d5156b09a009b690e8677fb97e0a.tar.bz2
docs(bootstrap): Note that ngScenario requires ngApp
ngScenario expects an ngApp directive to be used, and doesn't work for manually bootstrapped apps. The failure mode is to hang on navigation. Trying to make this wont-fix bug less obscure by documenting it. Eventually Protractor will replace ngScenario and fix this.
Diffstat (limited to 'docs')
-rw-r--r--docs/content/guide/dev_guide.e2e-testing.ngdoc4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/content/guide/dev_guide.e2e-testing.ngdoc b/docs/content/guide/dev_guide.e2e-testing.ngdoc
index 243517ad..00339cb4 100644
--- a/docs/content/guide/dev_guide.e2e-testing.ngdoc
+++ b/docs/content/guide/dev_guide.e2e-testing.ngdoc
@@ -302,3 +302,7 @@ element('.btn-danger').click();
element('table tbody a');
element('.btn-danger').click();
</pre>
+
+# Caveats
+
+ngScenario does not work with apps that manually bootstrap using angular.bootstrap. You must use the ng-app directive.