From 72a282335f9691729138d12ba4d52c0bd9417293 Mon Sep 17 00:00:00 2001
From: Michael Neale
Date: Tue, 29 Jan 2013 14:35:15 +1100
Subject: [PATCH 13/18] Update README.md
---
README.md | 19 ++++++++++++++++---
1 file changed, 16 insertions(+), 3 deletions(-)
diff --git a/README.md b/README.md
index 79f4ae4c9b..cfb6bae7f7 100644
--- a/README.md
+++ b/README.md
@@ -1,10 +1,23 @@
# Welcome to Angular.JS on CloudBees
-This is a "ClickStart" version of the Angular.js "seed" starting point. You can launch it new by going to
-http://developer.cloudbees.com and pressing the angular button. It will setup a Jenkins build running the test suite
-with testacular and Chrome, and then, should it pass the tests, deploys this served up from a tiny node.js server (you
+This is a "ClickStart" version of the AngularJS "seed" starting point. You can launch it here:
+
+
+
+This will setup a Jenkins build running the test suite (on each commit)
+with testacular and Chrome, and then, should it pass the tests, deploys this seed as an app served up from a tiny node.js server (you
can then clone and mess with it, or change the backend to what you need).
+Once your app is running, you can browse to (app)/index.html - and have a poke around.
+It will have instructions on how to clone and customise it.
+
+AngularJS home page is [Here](http://angularjs.org/)
+
+And you can read about the see project below (which was [forked](https://github.com/angular/angular-seed) for this):
+
+
+
+
# angular-seed — the seed for AngularJS apps
This project is an application skeleton for a typical [AngularJS](http://angularjs.org/) web app.
From e3d79583670f68e2c132200e961b731b4181f467 Mon Sep 17 00:00:00 2001
From: Michael Neale
Date: Fri, 1 Feb 2013 10:47:00 +1100
Subject: [PATCH 14/18] test with firefox too
---
config/testacular.conf.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/config/testacular.conf.js b/config/testacular.conf.js
index c376e70132..fb75cf0e6c 100644
--- a/config/testacular.conf.js
+++ b/config/testacular.conf.js
@@ -12,7 +12,7 @@ files = [
autoWatch = true;
-browsers = ['Chrome'];
+browsers = ['Chrome', 'Firefox'];
singleRun = true;
From 7a5d287de431a06287fc9c8254ef20cd878df70b Mon Sep 17 00:00:00 2001
From: Michael Neale
Date: Fri, 1 Feb 2013 12:16:25 +1100
Subject: [PATCH 15/18] Update README.md
---
README.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md
index cfb6bae7f7..4499212eed 100644
--- a/README.md
+++ b/README.md
@@ -4,8 +4,8 @@ This is a "ClickStart" version of the AngularJS "seed" starting point. You can l
-This will setup a Jenkins build running the test suite (on each commit)
-with testacular and Chrome, and then, should it pass the tests, deploys this seed as an app served up from a tiny node.js server (you
+This will setup a Jenkins build running the test suite (on each commit) with Chrome and Firefox.
+Should it pass the tests, this seed app is deployed served up from a tiny node.js server (you
can then clone and mess with it, or change the backend to what you need).
Once your app is running, you can browse to (app)/index.html - and have a poke around.
From 500bffc85c30a91906be19322b5d6d6a348af280 Mon Sep 17 00:00:00 2001
From: Michael Neale
Date: Mon, 4 Feb 2013 21:16:41 +1100
Subject: [PATCH 16/18] added e2e testing in
---
jenkins.xml | 12 +++++++++++-
1 file changed, 11 insertions(+), 1 deletion(-)
diff --git a/jenkins.xml b/jenkins.xml
index c1f479e76d..179792916b 100644
--- a/jenkins.xml
+++ b/jenkins.xml
@@ -99,6 +99,16 @@ fi
export PATH=$PATH:$node_home/bin
scripts/test.sh
+#
+# run the Angular.js e2e tests (this requires a server too)
+#
+
+node scripts/web-server.js &
+NODE_PID=$!
+scripts/e2e-test.sh
+kill -s TERM $NODE_PID
+
+
#
# package the app for the CloudBees node.js stack (deployer picks it up)
#
@@ -130,4 +140,4 @@ zip -r ../target/app.zip *
-
\ No newline at end of file
+
From 67f99c862dfeb1d37c635fbb6e45efcf8a6fa060 Mon Sep 17 00:00:00 2001
From: Michael Neale
Date: Mon, 4 Feb 2013 21:17:10 +1100
Subject: [PATCH 17/18] Update jenkins.xml
---
jenkins.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/jenkins.xml b/jenkins.xml
index 179792916b..cd7c493cce 100644
--- a/jenkins.xml
+++ b/jenkins.xml
@@ -103,7 +103,7 @@ scripts/test.sh
# run the Angular.js e2e tests (this requires a server too)
#
-node scripts/web-server.js &
+node scripts/web-server.js &
NODE_PID=$!
scripts/e2e-test.sh
kill -s TERM $NODE_PID
From 91859b93bc0625f00fac5b12c2606fb4108d69ee Mon Sep 17 00:00:00 2001
From: Michael Neale
Date: Mon, 4 Feb 2013 21:21:14 +1100
Subject: [PATCH 18/18] Update config/testacular-e2e.conf.js
---
config/testacular-e2e.conf.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/config/testacular-e2e.conf.js b/config/testacular-e2e.conf.js
index 51f51d2ee3..cbf7390825 100644
--- a/config/testacular-e2e.conf.js
+++ b/config/testacular-e2e.conf.js
@@ -8,7 +8,7 @@ files = [
autoWatch = false;
-browsers = ['Chrome'];
+browsers = ['Chrome', 'Firefox'];
singleRun = true;