Skip to content

Commit

Permalink
remove grunt-cli installation in travis
Browse files Browse the repository at this point in the history
- instead add it as a dependency
- fix test file name
  • Loading branch information
ashwinr committed Sep 23, 2013
1 parent 71b747b commit cef60a8
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,3 @@ language: node_js
node_js:
- "0.10"
- "0.8"
before_script:
- npm install -g grunt-cli
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"devDependencies": {
"chai": "~1.7.2",
"grunt": "~0.4.1",
"grunt-cli": "~0.1.9",
"grunt-contrib-clean": "~0.5.0",
"grunt-mocha-test": "~0.6.2",
"grunt-tslint": "~0.2.2",
Expand Down
2 changes: 1 addition & 1 deletion test/rules/classNameRuleTests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

describe("<classname>", () => {
it("ensures class names are always pascal-cased", () => {
var fileName = "rules/className.test.ts";
var fileName = "rules/classname.test.ts";
var createFailure = Lint.Test.createFailuresOnFile(fileName, Lint.Rules.ClassNameRule.FAILURE_STRING);
var expectedFailure1 = createFailure([5, 7], [5, 23]);
var expectedFailure2 = createFailure([9, 7], [9, 33]);
Expand Down

0 comments on commit cef60a8

Please sign in to comment.