diff options
| author | Igor Minar | 2011-11-24 03:53:04 -0800 |
|---|---|---|
| committer | Igor Minar | 2011-11-30 14:49:35 -0500 |
| commit | dbd880cc0a9521bd5b9c96ca3f052450c3def336 (patch) | |
| tree | fc524b84aab7ea1f67ff14962ea31f1e735f628c /lib/jasmine-jstd-adapter/JasmineAdapter.js | |
| parent | bf8e0540f8195edbaaa3d0138bd6a26e79e1ab58 (diff) | |
| download | angular.js-dbd880cc0a9521bd5b9c96ca3f052450c3def336.tar.bz2 | |
feat($http): add promise support
quite messy, some tests are missing, contains an experimental jasmine DI support)
Diffstat (limited to 'lib/jasmine-jstd-adapter/JasmineAdapter.js')
| -rw-r--r-- | lib/jasmine-jstd-adapter/JasmineAdapter.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/jasmine-jstd-adapter/JasmineAdapter.js b/lib/jasmine-jstd-adapter/JasmineAdapter.js index 3b0fb2d7..ebf08ee4 100644 --- a/lib/jasmine-jstd-adapter/JasmineAdapter.js +++ b/lib/jasmine-jstd-adapter/JasmineAdapter.js @@ -135,7 +135,7 @@ var oldIt = window.it; window.it = function(name, fn){ fn.exclusive = 1; // run anything under ddescribe - jasmine.getEnv().it(name, fn); + oldIt(name, fn); }; try { fn.call(this); |
