2016-06-23 16:47:54 +00:00
|
|
|
/**
|
|
|
|
|
* @license
|
|
|
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
|
|
|
*
|
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
|
*/
|
|
|
|
|
|
2017-03-02 20:12:46 +00:00
|
|
|
import {describe, expect, it} from '@angular/core/testing/src/testing_internal';
|
2016-05-28 03:15:40 +00:00
|
|
|
import {getDOM} from '@angular/platform-browser/src/dom/dom_adapter';
|
|
|
|
|
|
|
|
|
|
|
2017-12-16 22:42:55 +00:00
|
|
|
{
|
2016-05-28 03:15:40 +00:00
|
|
|
describe('cookies', () => {
|
2017-12-18 06:18:50 +00:00
|
|
|
if (isNode) return;
|
2016-05-28 03:15:40 +00:00
|
|
|
it('sets cookie values', () => {
|
|
|
|
|
getDOM().setCookie('my test cookie', 'my test value');
|
|
|
|
|
getDOM().setCookie('my other cookie', 'my test value 2');
|
|
|
|
|
expect(getDOM().getCookie('my test cookie')).toBe('my test value');
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
}
|