aboutsummaryrefslogtreecommitdiffstats
path: root/docs/config/templates
diff options
context:
space:
mode:
authorJulie2014-02-12 22:47:42 +0000
committerPeter Bacon Darwin2014-02-16 19:03:42 +0000
commitcd508678cd9baffd2bc0c9e11ae724a7b2ff70bb (patch)
treeaed39a3c95c481e875c3dedd43006ffdbe15cf62 /docs/config/templates
parent0f77bd6d0a5c7c4529f5330ece032eea32eca278 (diff)
downloadangular.js-cd508678cd9baffd2bc0c9e11ae724a7b2ff70bb.tar.bz2
chore(protractor-generator): add dgeni processor for protractor
Diffstat (limited to 'docs/config/templates')
-rw-r--r--docs/config/templates/protractorTests.template.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/config/templates/protractorTests.template.js b/docs/config/templates/protractorTests.template.js
new file mode 100644
index 00000000..d7580a48
--- /dev/null
+++ b/docs/config/templates/protractorTests.template.js
@@ -0,0 +1,7 @@
+describe("{$ doc.description $}", function() {
+ beforeEach(function() {
+ browser.get("{$ doc.pathPrefix $}/{$ doc.examplePath $}");
+ });
+
+{$ doc.innerTest $}
+});