Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
language: node_js
node_js:
- 0.10
2 changes: 1 addition & 1 deletion karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ module.exports = function(config) {
// - Safari (only Mac; has to be installed with `npm install karma-safari-launcher`)
// - PhantomJS
// - IE (only Windows; has to be installed with `npm install karma-ie-launcher`)
browsers: ['Chrome'],
browsers: ['Chrome', 'PhantomJS'],


// If browser does not capture in given timeout [ms], kill it
Expand Down
13 changes: 8 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,16 @@
"description": "SelectNav.js is a JavaScript plugin that lets you convert your website navigation into a select drop-down menu. Used together with media queries it helps you to create a space saving, responsive navigation for small screen devices.",
"main": "selectnav-new.js",
"devDependencies": {
"karma": "~0.10.9",
"chai": "~1.9.0",
"mocha": "~1.17.1",
"karma-mocha": "~0.1.1"
"karma": "~0.12.31",
"chai": "~2.0.0",
"mocha": "~2.1.0",
"karma-mocha": "~0.1.10",
"karma-cli": "0.0.4",
"phantomjs": "~1.9.15",
"karma-phantomjs-launcher": "~0.1.4"
},
"scripts": {
"test": "./node_modules/.bin/karma start --single-run"
"test": "./node_modules/.bin/karma start --single-run --browsers PhantomJS"
},
"repository": {
"type": "git",
Expand Down