fixed some tests for npm module

This commit is contained in:
Bart van der Schoor 2014-04-01 02:08:55 +02:00
parent f730d125d0
commit 526b68f31a
4 changed files with 4 additions and 4 deletions

View File

@ -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);

View File

@ -1,4 +1,4 @@
/// <reference path="detect-indent-tests.d.ts" />
/// <reference path="detect-indent.d.ts" />
import di = require('detect-indent');

View File

@ -4,5 +4,5 @@
// Definitions: https://github.com/borisyankov/DefinitelyTyped
declare module 'source-map-support' {
export function install();
export function install(): any;
}