chore(travis): re-enable jshint

This commit is contained in:
Andrew Joslin
2014-05-08 09:10:27 -06:00
parent 6facb8cb86
commit 95d1aea4f1
27 changed files with 197 additions and 194 deletions

View File

@@ -127,7 +127,7 @@ describe('DelegateFactory', function() {
expect(result).toBe('a1');
instance1.a.reset();
var result = delegate.$getByHandle('2').a(2,3,4);
result = delegate.$getByHandle('2').a(2,3,4);
expect(instance2.a).toHaveBeenCalledWith(2,3,4);
expect(instance1.a).not.toHaveBeenCalled();
expect(result).toBe('a2');
@@ -151,7 +151,7 @@ describe('DelegateFactory', function() {
instance1.a.reset();
deregister();
var result = delegateInstance.a(2);
result = delegateInstance.a(2);
expect(instance1.a).not.toHaveBeenCalled();
expect(instance2.a).toHaveBeenCalledWith(2);
expect(instance3.a).not.toHaveBeenCalled();