You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ro...@apache.org on 2016/05/25 16:10:07 UTC

fauxton commit: updated refs/heads/master to 88b470d

Repository: couchdb-fauxton
Updated Branches:
  refs/heads/master 03e0fd557 -> 88b470d44


readd stylecheck to CI, fix style issue

PR: #712
PR-URL: https://github.com/apache/couchdb-fauxton/pull/712
Reviewed-By: Benjamin Keen <be...@gmail.com>


Project: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/commit/88b470d4
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/tree/88b470d4
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/diff/88b470d4

Branch: refs/heads/master
Commit: 88b470d44d7207f3948120d40656408cd9511dd4
Parents: 03e0fd5
Author: Robetr Kowalski <ro...@apache.org>
Authored: Wed May 18 16:51:01 2016 +0200
Committer: Robert Kowalski <ro...@apache.org>
Committed: Wed May 25 18:10:25 2016 +0200

----------------------------------------------------------------------
 .travis.yml                                         | 1 +
 app/addons/documents/tests/nightwatch/revBrowser.js | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/88b470d4/.travis.yml
----------------------------------------------------------------------
diff --git a/.travis.yml b/.travis.yml
index 7beac34..acecd23 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -30,6 +30,7 @@ before_install:
   - "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1400x900x16"
 
 before_script:
+  - npm run stylecheck
   - npm test
   - grunt debugDev
   - DIST=./dist/debug ./bin/fauxton &

http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/88b470d4/app/addons/documents/tests/nightwatch/revBrowser.js
----------------------------------------------------------------------
diff --git a/app/addons/documents/tests/nightwatch/revBrowser.js b/app/addons/documents/tests/nightwatch/revBrowser.js
index cd1f289..1a26785 100644
--- a/app/addons/documents/tests/nightwatch/revBrowser.js
+++ b/app/addons/documents/tests/nightwatch/revBrowser.js
@@ -51,7 +51,7 @@ module.exports = {
       .url(baseUrl + '/#/database/' + newDatabaseName + '?include_docs=true&conflicts=true')
 
       .getText('body', function (result) {
-        this.verify.ok(result.value.indexOf('"color": "white"') !== -1, 'check if doc version was promoted')
+        this.verify.ok(result.value.indexOf('"color": "white"') !== -1, 'check if doc version was promoted');
       })
 
     .end();