Skip to content

Commit 25dee8c

Browse files
committed
Fix CS
1 parent 57f5484 commit 25dee8c

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/Autocomplete/assets/test/controller.test.ts

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff 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;

0 commit comments

Comments
 (0)