Skip to content

Commit

Permalink
Fixing compilation error on appveyor.
Browse files Browse the repository at this point in the history
  • Loading branch information
John Vilk committed Jan 19, 2017
1 parent 5d8bc63 commit 685902a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
"rollup-watch": "^2.5.0",
"source-map-loader": "^0.1.5",
"tslint": "^4.3",
"typescript": "^2.1.4",
"typescript": "^2.1.5",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2"
},
Expand Down
4 changes: 2 additions & 2 deletions test/tests/general/node-path.ts
Original file line number Diff line number Diff line change
Expand Up @@ -238,8 +238,8 @@ export default function() {
// assert.equal(actual, expected, message);
});
assert.equal(failures.length, 0, failures.join(''));
var joinThrowTests = [true, false, 7, null, {}, undefined, [], NaN];
joinThrowTests.forEach(function(test) {
var joinThrowTests: any[] = [true, false, 7, null, {}, undefined, [], NaN];
joinThrowTests.forEach(function(test: any) {
assert.throws(function() {
path.join(test);
}, TypeError);
Expand Down

0 comments on commit 685902a

Please sign in to comment.