aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorIgor Minar2013-01-08 14:23:50 -0800
committerIgor Minar2013-01-08 14:27:51 -0800
commitafd677116375384ef4bbe85bf214d2e04ae8fb41 (patch)
tree740b1aad76e7c3f7152a792e66706c31b21f4e3f /test
parent4cda02860949cdd090923bca52916cc5c4ecac9a (diff)
downloadangular.js-afd677116375384ef4bbe85bf214d2e04ae8fb41.tar.bz2
refactor($browser): remove faulty 20+ cookies warning
the warning is defunct (and the test is incorrect) so obviously nobody is using it and it just takes up space. also the browser behavior varies (ff and chrome allow up to 150 cookies, safari even more), so it's not very useful. Closes #1712
Diffstat (limited to 'test')
-rw-r--r--test/ng/browserSpecs.js27
1 files changed, 0 insertions, 27 deletions
diff --git a/test/ng/browserSpecs.js b/test/ng/browserSpecs.js
index 3f28c605..53ca2642 100644
--- a/test/ng/browserSpecs.js
+++ b/test/ng/browserSpecs.js
@@ -277,33 +277,6 @@ describe('browser', function() {
expect(browser.cookies().x).toEqual('shortVal');
});
-
- it('should log warnings when 20 cookies per domain storage limit is reached', function() {
- var i, str, cookieStr;
-
- for (i=0; i<20; i++) {
- str = '' + i;
- browser.cookies(str, str);
- }
-
- i=0;
- for (str in browser.cookies()) {
- i++;
- }
- expect(i).toEqual(20);
- expect(logs.warn).toEqual([]);
- cookieStr = document.cookie;
-
- browser.cookies('one', 'more');
- expect(logs.warn).toEqual([]);
-
- //if browser dropped a cookie (very likely), make sure that the cache is not out of sync
- if (document.cookie === cookieStr) {
- expect(size(browser.cookies())).toEqual(20);
- } else {
- expect(size(browser.cookies())).toEqual(21);
- }
- });
});