File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed
src/Autocomplete/assets/test Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -139,7 +139,7 @@ describe('AutocompleteController', () => {
139139 } ) ;
140140
141141 it ( 'resets when ajax URL attribute on a select element changes' , async ( ) => {
142- const { container, tomSelect} = await startAutocompleteTest ( `
142+ const { container, tomSelect } = await startAutocompleteTest ( `
143143 <label for="the-select">Items</label>
144144 <select
145145 id="the-select"
@@ -157,25 +157,25 @@ describe('AutocompleteController', () => {
157157 results : [
158158 {
159159 value : 3 ,
160- text : 'salad'
160+ text : 'salad' ,
161161 } ,
162- ]
163- } ) ,
162+ ] ,
163+ } )
164164 ) ;
165165
166166 fetchMock . mockResponseOnce (
167167 JSON . stringify ( {
168168 results : [
169169 {
170170 value : 1 ,
171- text : 'pizza'
171+ text : 'pizza' ,
172172 } ,
173173 {
174174 value : 2 ,
175- text : 'popcorn'
176- }
177- ]
178- } ) ,
175+ text : 'popcorn' ,
176+ } ,
177+ ] ,
178+ } )
179179 ) ;
180180
181181 const controlInput = tomSelect . control_input ;
You can’t perform that action at this time.
0 commit comments