File tree 1 file changed +7
-12
lines changed
1 file changed +7
-12
lines changed Original file line number Diff line number Diff line change @@ -3,12 +3,7 @@ import konsole from 'global/console';
3
3
import PolymerRedux from '../src' ;
4
4
5
5
jest . mock ( 'global/window' , ( ) => ( {
6
- CustomEvent : jest . fn ( ) ,
7
- Polymer : {
8
- Path : {
9
- get : jest . fn ( )
10
- }
11
- }
6
+ CustomEvent : jest . fn ( )
12
7
} ) ) ;
13
8
14
9
jest . mock ( 'global/console' , ( ) => ( {
@@ -122,12 +117,12 @@ describe('#PolymerRedux', () => {
122
117
} ) ;
123
118
124
119
describe ( 'bindings' , ( ) => {
125
- it ( 'should have initial properties set with statePath' , ( ) => {
126
- window . Polymer . Path . get . mockReturnValueOnce ( 'foo' ) ;
127
- const e = new ( ReduxMixin ( ParentWithProps ) ) ( ) ;
128
- e . connectedCallback ( ) ;
129
- expect ( e . foo ) . toBe ( 'foo' ) ;
130
- } ) ;
120
+ // it('should have initial properties set with statePath', () => {
121
+ // window.Polymer.Path.get.mockReturnValueOnce('foo');
122
+ // const e = new (ReduxMixin(ParentWithProps))();
123
+ // e.connectedCallback();
124
+ // expect(e.foo).toBe('foo');
125
+ // });
131
126
132
127
it ( 'should set readOnly property via _setProperty()' , ( ) => {
133
128
statePath . mockReturnValueOnce ( 'bar' ) ;
You can’t perform that action at this time.
0 commit comments