aboutsummaryrefslogtreecommitdiffstats
path: root/docs/config/templates
diff options
context:
space:
mode:
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 $}
+});