Github user robertkowalski commented on a diff in the pull request:
https://github.com/apache/couchdb-fauxton/pull/440#discussion_r31134262
--- Diff: tasks/fauxton.js ---
@@ -116,6 +116,12 @@ module.exports = function (grunt) {
var fileSrc = grunt.option('file') || data.files.src;
var testFiles = grunt.file.expand(fileSrc);
+ // filter out any tests that aren't found in the /app/ folder. For
scripts that are extending Fauxton, we still
+ // know that all addons will have been copied into /app. This prevent
tests being ran twice
+ testFiles = _.filter(testFiles, function (filePath) {
+ return /\/app\//.test(filePath);
+ });
+
--- End diff --
we also have unit tests in `core`
how about blcklisting the dist folder?
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---