Skip to content

Commit 13adcbb

Browse files
committed
update version
1 parent 0a7beca commit 13adcbb

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

.nvmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
8

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
language: node_js
22
node_js:
3-
- "5"
3+
- "8"
44
sudo: false
55
script:
66
- npm test

draft-js-plugins-editor/src/Editor/__test__/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -654,7 +654,7 @@ describe('Editor', () => {
654654
expect(pluginComponents.length).to.equal(1);
655655
});
656656

657-
it.skip('uses both custom and simple decorators in plugins', () => {
657+
it('uses both custom and simple decorators in plugins', () => {
658658
const simplePluginDecoratorStrategy = sinon.spy(plugin.decorators[0], 'strategy');
659659
const customPluginDecorator = sinon.spy(plugin.decorators[1], 'getDecorations');
660660
const decoratorStrategy = sinon.spy(decorator, 'strategy');

testHelper.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const { window } = jsdom;
1515

1616
function copyProps(src, target) {
1717
const props = Object.getOwnPropertyNames(src)
18-
.filter(prop => typeof target[prop] === 'undefined')
18+
.filter((prop) => typeof target[prop] === 'undefined')
1919
.reduce((result, prop) => ({
2020
...result,
2121
[prop]: Object.getOwnPropertyDescriptor(src, prop),

0 commit comments

Comments
 (0)