Added "any" type to foo

Apparently the "noImplicitAny" switch is set in Travis.
This commit is contained in:
robertjmason
2015-06-30 15:25:16 -07:00
parent 7b129ea9d4
commit d9b1c4d96c
+1 -1
View File
@@ -658,7 +658,7 @@ describe("jasmine.objectContaining", function () {
});
describe("jasmine.arrayContaining", function() {
var foo;
var foo: any;
beforeEach(function() {
foo = [1, 2, 3, 4];