Address linting errors

This commit is contained in:
wenincode 2022-10-13 19:04:36 -06:00
parent 229a97967a
commit b761f583a8
1 changed files with 8 additions and 8 deletions

View File

@ -1,12 +1,12 @@
export default (collection, text) => export default (collection, text) =>
(scope = '.consul-health-check-list') => { (scope = '.consul-health-check-list') => {
return collection({ return collection({
scope, scope,
itemScope: 'li', itemScope: 'li',
item: { item: {
name: text('header h2'), name: text('header h2'),
type: text('[data-health-check-type]'), type: text('[data-health-check-type]'),
exposed: text('[data-test-exposed]'), exposed: text('[data-test-exposed]'),
} },
}); });
}; };