Skip to content

Commit

Permalink
chore: more style fixes for semistandard 9.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
motiz88 committed Sep 7, 2016
1 parent 9fa8463 commit 4729e51
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions test/specs/reducer.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,19 @@ describe('reducer', () => {
reducer(undefined, {}).should.deep.equal({devices: [], listeningDevices: []});
});

describeSetterAction({ reducer, type: RECEIVE_DEVICE_LIST, payloads: [
[], [''], ['Hua Xing'], ['Yamaha USB-MIDI', 'Hua Xing']
], key: 'devices' });
describeSetterAction({
reducer,
type: RECEIVE_DEVICE_LIST,
payloads: [ [], [''], ['Hua Xing'], ['Yamaha USB-MIDI', 'Hua Xing'] ],
key: 'devices'
});

describeSetterAction({ reducer, type: SET_LISTENING_DEVICES, payloads: [
[], [''], ['Hua Xing'], ['Yamaha USB-MIDI', 'Hua Xing']
], key: 'listeningDevices' });
describeSetterAction({
reducer,
type: SET_LISTENING_DEVICES,
payloads: [ [], [''], ['Hua Xing'], ['Yamaha USB-MIDI', 'Hua Xing'] ],
key: 'listeningDevices'
});

describeNoOpAction({ reducer, type: SEND_MIDI_MESSAGE });

Expand Down

0 comments on commit 4729e51

Please sign in to comment.