Skip to content

Commit

Permalink
travis ci build
Browse files Browse the repository at this point in the history
  • Loading branch information
ielgnaw committed Jan 19, 2017
1 parent bc3ad4a commit 67c6540
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"test": "npm run lint && npm run coverage",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"postinstall": "node scripts/install.js",
"coverage-single": "istanbul cover ./node_modules/jasmine-node/bin/jasmine-node -x \"{cli,lib/css/rules}/*.js\" --captureExceptions test/lib/util.spec.js"
"coverage-single": "istanbul cover ./node_modules/jasmine-node/bin/jasmine-node -x \"{cli,lib/css/rules}/*.js\" --captureExceptions test/lib/js/rules/export-on-declare.spec.js"
},
"bin": {
"fecs": "./bin/fecs"
Expand Down Expand Up @@ -43,7 +43,7 @@
},
"homepage": "https://github.com/ecomfe/fecs",
"dependencies": {
"babel-eslint": "6.1.2",
"babel-eslint": "^6.1.2",
"chalk": "^1.1.1",
"csscomb": "^3.1.7",
"csshint": "stable",
Expand Down
2 changes: 1 addition & 1 deletion test/lib/js/rules/export-on-declare.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ ruleTester.run('export-on-declare', rule, {
'export default {foo, bar}',
'export default class {}',
'export class Foo {}',
'export new Foo();',
// 'export new Foo();',
'export default (function (foo) {return foo;})();',
'export {a};',
'export const foo = {a, bar};',
Expand Down

0 comments on commit 67c6540

Please sign in to comment.