Skip to content

Commit 36e6ce1

Browse files
committedSep 9, 2017
Removed apparantly useless test and reference to window.Polymer
1 parent 060ae75 commit 36e6ce1

File tree

1 file changed

+7
-12
lines changed

1 file changed

+7
-12
lines changed
 

‎test/polymer-redux.spec.js

+7-12
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,7 @@ import konsole from 'global/console';
33
import PolymerRedux from '../src';
44

55
jest.mock('global/window', () => ({
6-
CustomEvent: jest.fn(),
7-
Polymer: {
8-
Path: {
9-
get: jest.fn()
10-
}
11-
}
6+
CustomEvent: jest.fn()
127
}));
138

149
jest.mock('global/console', () => ({
@@ -122,12 +117,12 @@ describe('#PolymerRedux', () => {
122117
});
123118

124119
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+
// });
131126

132127
it('should set readOnly property via _setProperty()', () => {
133128
statePath.mockReturnValueOnce('bar');

0 commit comments

Comments
 (0)
Please sign in to comment.