Skip to content

Instantly share code, notes, and snippets.

@kwilson
Created February 18, 2015 14:49

Revisions

  1. kwilson created this gist Feb 18, 2015.
    7 changes: 7 additions & 0 deletions mockpromise.ts
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,7 @@
    function createMockPromise<T>(): ng.IPromise<T> {
    return {
    then: function (callback: () => ng.IHttpPromise<T>) { return callback(); },
    catch: function (callback: () => ng.IHttpPromise<T>) { return callback(); },
    finally: function (callback: () => ng.IHttpPromise<T>) { return callback(); }
    }
    }