Skip to content

Commit

Permalink
fixed some tests for npm module
Browse files Browse the repository at this point in the history
  • Loading branch information
Bartvds committed Apr 1, 2014
1 parent f730d12 commit 526b68f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ function foo () {
}

e = new AssertionError(str);
e = new AssertionError(str, {a:1, b2});
e = new AssertionError(str, {a:1, b2}, foo);
e = new AssertionError(str, {a:1, b:2});
e = new AssertionError(str, {a:1, b:2}, foo);

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/// <reference path="detect-indent-tests.d.ts" />
/// <reference path="detect-indent.d.ts" />

import di = require('detect-indent');

Expand Down
2 changes: 1 addition & 1 deletion source-map-support/source-map-support.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
// Definitions: https://github.com/borisyankov/DefinitelyTyped

declare module 'source-map-support' {
export function install();
export function install(): any;
}

0 comments on commit 526b68f

Please sign in to comment.