summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-05-16 21:14:07 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2014-05-16 21:14:07 +0200
commit88d5f941a02303e2beb6d1b05b5641a6a87b26f6 (patch)
tree42d221144358cffedabbba176c10da844ea645dc
parent9b32ba47531b592a63878fe4e031079d74cb555e (diff)
fix e2e test
-rw-r--r--.travis.yml6
-rw-r--r--js/tests/e2e/main.js2
2 files changed, 4 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index c872cf564..950f6567d 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,12 +1,12 @@
language: php
php:
- 5.4
- #- 5.5
+ - 5.5
env:
- DB=sqlite
- #- DB=postgresql
- #- DB=mysql
+ - DB=postgresql
+ - DB=mysql
before_install:
# get a newer node.js version
diff --git a/js/tests/e2e/main.js b/js/tests/e2e/main.js
index 444e43e5d..3beb4c8af 100644
--- a/js/tests/e2e/main.js
+++ b/js/tests/e2e/main.js
@@ -16,7 +16,7 @@ describe('news page', function () {
it('should go to the news page', function () {
browser.getTitle().then(function (title) {
- expect(title).toBe('News - ownCloud');
+ expect(title).toContain('News');
});
});