Skip to content

Commit

Permalink
Merge remote-tracking branch 'avtar/FLUID-5917'
Browse files Browse the repository at this point in the history
* avtar/FLUID-5917:
  FLUID-5917: Removes unnecessary clean task
  FLUID-5917: Removes TAP reports
  FLUID-5917: Makes Testem generate a TAP report
  • Loading branch information
jobara committed Sep 13, 2016
2 parents b86ecbb + 4f2702b commit 3f0f30f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -4,3 +4,4 @@
/src/framework/preferences/css/*.css
/.bundle/
/.vagrant/
report.tap
3 changes: 2 additions & 1 deletion Gruntfile.js
Expand Up @@ -54,7 +54,8 @@ module.exports = function (grunt) {
clean: {
build: "build",
products: "products",
stylus: "src/framework/preferences/css/*.css"
stylus: "src/framework/preferences/css/*.css",
ciArtifacts: ["*.tap"]
},
copy: {
all: {
Expand Down
4 changes: 3 additions & 1 deletion tests/testem.json
@@ -1,4 +1,6 @@
{
"test_page": "tests/all-tests.html",
"timeout": 300
"timeout": 300,
"reporter": "tap",
"report_file": "report.tap"
}

0 comments on commit 3f0f30f

Please sign in to comment.