Skip to content
This repository has been archived by the owner on Nov 29, 2023. It is now read-only.

Commit

Permalink
Attempt to fix coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
msaspence committed Feb 17, 2016
1 parent 4b4d60a commit 8ba793a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .coveralls.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
service_name: travis-pro
service_name: travis-ci
repo_token: nvVMSiNw8OGh979ypIV9G6OJmjTrBpm9D
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Demo JavaScript App

[![Coverage Status](https://coveralls.io/repos/github/holidayextras/example-js-project/badge.svg?branch=master)](https://coveralls.io/github/holidayextras/example-js-project?branch=master)

An example codebase demonstrating our preferred libraries, recommended project structure and build process setup . This project represents "sensible defaults" or "preferred" ways of doing things. It is NOT the law! If you have a good reason to use or do something differently you should. Note: "its new and shiny" is not, on its own, a good reason to use something different. There is a lot of value in doing things in a consistent way that people are familiar with.

Documentation of these tools and practices can be found in the culture repository. The rest of this readme demonstrates a sample template to be used as a starting point for new projects.
Expand Down
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,9 @@
"test": "npm-run-all test:* ",
"test:selenium": "echo \"pending test:selenium\" && exit 0",
"test:mocha": "mocha ./tests --require ./tests/support/setup.js",
"ci": "npm-run-all test:mocha",
"coverage": "istanbul cover _mocha -- ./tests --require ./tests/support/setup.js",
"test:coverage": "istanbul cover _mocha -- ./tests --require ./tests/support/setup.js",
"ci": "npm-run-all ci:*",
"ci:coverage": "istanbul cover --report text-lcov ./node_modules/.bin/_mocha -- ./tests --require ./tests/support/setup.js -R spec | ./node_modules/coveralls/bin/coveralls.js",
"lint": "npm-run-all lint:*",
"lint:javascript": "echo \"pending lint:javascript\" && exit 0",
"lint:less": "echo \"pending lint:less\" && exit 0",
Expand All @@ -42,6 +43,7 @@
"chai-enzyme": "latest",
"chalk": "latest",
"commander": "latest",
"coveralls": "^2.11.6",
"css-loader": "latest",
"dirty-chai": "latest",
"enzyme": "^1.0.0",
Expand Down

0 comments on commit 8ba793a

Please sign in to comment.