| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2012-03-09 | refactor($provide) Rename service -> provider | Vojta Jina | |
| It registers a provider class, so this makes more sense. Breaks Rename $provide.service -> $provide.provider | |||
| 2012-03-05 | docs(mock.inject): Fix the example | Vojta Jina | |
| And explicitly say that you need to load your application modules that you wanna test. | |||
| 2012-02-29 | fix(mock.TzDate): getDay() takes into account the timezone offset | Stephane Bisson | |
| 2012-02-21 | feat($compile) add locals, isolate scope, transclusion | Misko Hevery | |
| 2012-01-25 | add($compile): add compiler v2.0 - not connected | Misko Hevery | |
| 2012-01-25 | feature($exceptionHandler): $exceptionHandler now supports var_args | Misko Hevery | |
| 2012-01-17 | docs(*): various doc fixes | Igor Minar | |
| 2012-01-16 | fix(e2e $httpBackend): use browser.defer instead of $defer | Igor Minar | |
| this is necessary to avoid $apply from within $apply situations | |||
| 2012-01-13 | feat(module): add runtime block | Misko Hevery | |
| 2012-01-13 | style(*): small fixes | Igor Minar | |
| 2012-01-13 | docs($http, $httpBackend): docs docs docs | Igor Minar | |
| 2012-01-13 | fix($http): remove support for PATCH + better whenXXX, expectXXX api | Igor Minar | |
| - there are too many unknowns about PATCH, so I'm dropping its support until we know that this is actually useful - expectGET, expectHEAD and expectJSON (and the same for whenXXX) should not require response data to be specified | |||
| 2012-01-13 | style(mocks): remove console.log | Vojta Jina | |
| 2012-01-12 | docs(inject/module): add documentation | Misko Hevery | |
| 2012-01-12 | refactor(module): strict separation between module-config / app-runtime | Misko Hevery | |
| 2012-01-11 | style(mock): make jslint and igor happier | Vojta Jina | |
| 2012-01-11 | refactor(mock.$httpBackend): split (e2e/unit testing version of $httpBackend ↵ | Vojta Jina | |
| mock) | |||
| 2012-01-11 | fix(mock.$httpBackend): resetExpectations should not create new array | Vojta Jina | |
| 2012-01-10 | feat(module): new module loader | Misko Hevery | |
| 2012-01-09 | fix($httpBackend): fix for jsonp requests | Igor Minar | |
| 2012-01-09 | chore($http): small $http fixes | Igor Minar | |
| 2012-01-09 | feat($http): turn mock backend into a decorator + e2e testing support | Igor Minar | |
| - provider -> decorator - autoflush + passThrough mode - fix noop -> angular.noop | |||
| 2012-01-09 | feat($httpBackend): add expect/when shortcut methods | Igor Minar | |
| 2012-01-09 | fix($http): fix and cleanup $http and friends | Igor Minar | |
| $http: - use promises internally - get rid of XhrFuture that was previously used internally - get rid of $browser.defer calls for async stuff (serving from cache), promises will take care of asynchronicity - fix transformation bugs (when caching requested + multiple request pending + error is returned) - get rid of native header parsing and instead just lazily parse the header string $httpBackend: - don't return raw/mock XMLHttpRequest object (we don't use it for anything anymore) - call the callback with response headers string mock $httpBackend: - unify response api for expect and when - call the callback with response headers string - changed the expect/when failure error message so that EXPECTED and GOT values are aligned Conflicts: src/service/http.js test/service/compilerSpec.js test/service/httpSpec.js | |||
| 2012-01-09 | feat(browser.defer): flush should throw exception when queue is empty | Igor Minar | |
| 2011-12-01 | fix($httpBackend mock): getResponseHeader should be case insensitive | Igor Minar | |
| 2011-11-30 | feat(dump): add support for arrays, functions, errors | Igor Minar | |
| 2011-11-30 | feat(mock.$httpBackend): say which request was expected when unexpected ↵ | Vojta Jina | |
| request error | |||
| 2011-11-30 | feat(mock.$httpBackend): verify expectations after flush() | Vojta Jina | |
| 2011-11-30 | refactor(mock.$httpBackend): rename when().then() to when().respond() | Vojta Jina | |
| 2011-11-30 | fix(mock.$httpBackend): flush() even requests sent during callbacks | Vojta Jina | |
| 2011-11-30 | feat(mock.$httpBackend): add verifyNoOutstandingRequest method | Vojta Jina | |
| + rename verifyExpectations to verifyNoOutstandingExpectation | |||
| 2011-11-30 | feat(mock.$httpBackend): throw when nothing to flush, dump data/headers when ↵ | Vojta Jina | |
| expected different | |||
| 2011-11-30 | feat($httpBackend): extract $browser.xhr into separate service | Vojta Jina | |
| - remove whole $browser.xhr stuff - remove whole mock $browser.xhr stuff - add $httpBackend service + migrate unit tests from $browser - add temporary API to access $browser's outstandingRequests count | |||
| 2011-11-30 | feat(mocks.$browser): add simple addJs() method into $browser mock | Vojta Jina | |
| 2011-11-30 | feat(mocks.$httpBackend): add $httpBackend mock | Vojta Jina | |
| $httpBackend mock allows: - expecting (asserting) requests - stubbing (responding without asserting) Add empty $httpBackend service (currently just wrapper for $browser.xhr) | |||
| 2011-11-30 | feat($browser): xhr returns raw request object | Vojta Jina | |
| 2011-11-14 | refactor(injector): $injector is no longer a function. | Misko Hevery | |
| - $injector('abc') -> $injector.get('abc'); - $injector(fn) -> $injector.invoke(null, fn); | |||
| 2011-11-14 | style(docs): make jslint happy - fix some warnings | Vojta Jina | |
| 2011-11-14 | fix(doc) cleanup all api doc link warnings | Misko Hevery | |
| 2011-11-14 | doc(AUTO, NG_MOCK): Documenting the AUTO and NG_MOCK module | Misko Hevery | |
| 2011-11-14 | chore(scenario tests): make scenario tests pass again | Misko Hevery | |
| 2011-11-14 | refactor(angular): isDate / isArray test iframe independent fix | Misko Hevery | |
| 2011-11-14 | refactor(mock): moved mocks into its own module | Misko Hevery | |
| 2011-11-14 | refactor(json): break dependence on api.js | Misko Hevery | |
| 2011-11-14 | refactor($service): removed almost all references to scope.$service | Misko Hevery | |
| - still need to remove from factory | |||
| 2011-11-14 | refactor(services): migrate angular.service -> module | Misko Hevery | |
| 2011-10-22 | fix(defer.cancel): should return false instead of undefined | Igor Minar | |
| 2011-10-22 | feat($defer): add $defer.cancel | Igor Minar | |
| This functionality was previously available only as obscure $browser.defer.cancel. I also added docs and tests and fixed an issue in .defer.cancel mock. | |||
| 2011-10-12 | docs(*): remove @workInProgress from everywhere | Igor Minar | |
| it's not useful any more and it only makes the docs look ugly | |||
