Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
juliankrispel committed Nov 10, 2017
1 parent 0a7beca commit 13adcbb
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
8
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
language: node_js
node_js:
- "5"
- "8"
sudo: false
script:
- npm test
Expand Down
2 changes: 1 addition & 1 deletion draft-js-plugins-editor/src/Editor/__test__/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -654,7 +654,7 @@ describe('Editor', () => {
expect(pluginComponents.length).to.equal(1);
});

it.skip('uses both custom and simple decorators in plugins', () => {
it('uses both custom and simple decorators in plugins', () => {
const simplePluginDecoratorStrategy = sinon.spy(plugin.decorators[0], 'strategy');
const customPluginDecorator = sinon.spy(plugin.decorators[1], 'getDecorations');
const decoratorStrategy = sinon.spy(decorator, 'strategy');
Expand Down
2 changes: 1 addition & 1 deletion testHelper.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const { window } = jsdom;

function copyProps(src, target) {
const props = Object.getOwnPropertyNames(src)
.filter(prop => typeof target[prop] === 'undefined')
.filter((prop) => typeof target[prop] === 'undefined')
.reduce((result, prop) => ({
...result,
[prop]: Object.getOwnPropertyDescriptor(src, prop),
Expand Down

0 comments on commit 13adcbb

Please sign in to comment.