Skip to content

Commit

Permalink
Set up travis integration
Browse files Browse the repository at this point in the history
  • Loading branch information
install committed Jun 15, 2015
1 parent 4db1a3e commit 4e1b2af
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
language: node_js
node_js:
- "0.12"
- "0.11"
- "0.10"
- "0.8"
- "0.6"
- "node"
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# travis-test
[![Build Status](https://travis-ci.org/install/travis-test.svg)](https://travis-ci.org/install/travis-test)
Testing integration with Travis CI
23 changes: 23 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"name": "travis-test",
"version": "0.0.0",
"description": "Testing integration with Travis CI",
"main": "index.js",
"scripts": {
"test": "node_modules/mocha/bin/mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/install/travis-test.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/install/travis-test/issues"
},
"homepage": "https://github.com/install/travis-test",
"devDependencies": {
"mocha": "^2.2.5",
"chai": "^3.0.0"
}
}
9 changes: 9 additions & 0 deletions test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
var chai = require('chai');

describe('testSuite', function() {
describe('test', function() {
it('true should return true', function() {
chai.expect(true).to.be.true;
});
});
});

0 comments on commit 4e1b2af

Please sign in to comment.