diff options
| author | Misko Hevery | 2011-12-20 09:58:26 +0100 | 
|---|---|---|
| committer | Misko Hevery | 2012-01-25 11:46:35 -0800 | 
| commit | 1e258d11d08a5fd185c5299a0e3d5ff9ba0634f0 (patch) | |
| tree | e218947c8282ee434e114a8c56fe48f5ada3d83d | |
| parent | 81a6601e05a67fda9082d7d63a4031bb31c8deca (diff) | |
| download | angular.js-1e258d11d08a5fd185c5299a0e3d5ff9ba0634f0.tar.bz2 | |
feat(test): support it('should', pending);
| -rw-r--r-- | test/testabilityPatch.js | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/test/testabilityPatch.js b/test/testabilityPatch.js index 3615e3e1..13e726bb 100644 --- a/test/testabilityPatch.js +++ b/test/testabilityPatch.js @@ -217,3 +217,7 @@ function provideLog($provide) {        return log;      });  } + +function pending() { +  dump('PENDING'); +}; | 
