Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix lint errors with tests
  • Loading branch information
bruderstein committed Jul 27, 2015
commit 61ab9a80a741fe37b647058b29693bd2b73e9c91
18 changes: 9 additions & 9 deletions test/Select-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -590,16 +590,16 @@ describe('Select', function() {

asyncOptions.withArgs('te').callsArgWith(1, null, {
options: [
{value: 'test', label: 'TEST one'},
{value: 'test2', label: 'TEST two'},
{value: 'tell', label: 'TELL three'}
{ value: 'test', label: 'TEST one' },
{ value: 'test2', label: 'TEST two' },
{ value: 'tell', label: 'TELL three' }
]
});

asyncOptions.withArgs('tes').callsArgWith(1, null, {
options: [
{value: 'test', label: 'TEST one'},
{value: 'test2', label: 'TEST two'}
{ value: 'test', label: 'TEST one' },
{ value: 'test2', label: 'TEST two' }
]
});

Expand Down Expand Up @@ -682,9 +682,9 @@ describe('Select', function() {

asyncOptions.withArgs('te').callsArgWith(1, null, {
options: [
{value: 'test', label: 'TEST one'},
{value: 'test2', label: 'TEST two'},
{value: 'tell', label: 'TELL three'}
{ value: 'test', label: 'TEST one' },
{ value: 'test2', label: 'TEST two' },
{ value: 'tell', label: 'TELL three' }
],
complete: true
});
Expand Down Expand Up @@ -1581,5 +1581,5 @@ describe('Select', function() {
expect(React.findDOMNode(instance).querySelectorAll('.Select-option'),
'to have length', 0);
});
})
});
});