lint fixes

This commit is contained in:
Ulf Gebhardt 2021-04-25 16:28:29 +02:00
parent 609836d48c
commit d16886c1fd
No known key found for this signature in database
GPG Key ID: 81308EFE29ABFEBD
6 changed files with 5 additions and 10 deletions

View File

@ -9,7 +9,7 @@ describe('Logo.vue', () => {
beforeEach(() => {
mocks = {
$t: jest.fn()
$t: jest.fn(),
}
})
@ -25,6 +25,5 @@ describe('Logo.vue', () => {
it('renders', () => {
expect(wrapper.findAll('.ds-logo')).toHaveLength(1)
})
})
})

View File

@ -10,7 +10,7 @@ describe('moderation/index.vue', () => {
beforeEach(() => {
mocks = {
$t: jest.fn()
$t: jest.fn(),
}
})
@ -26,6 +26,5 @@ describe('moderation/index.vue', () => {
it('renders', () => {
expect(wrapper.is('.base-card')).toBe(true)
})
})
})

View File

@ -25,6 +25,5 @@ describe('create.vue', () => {
it('renders', () => {
expect(wrapper.findAll('.contribution-form')).toHaveLength(1)
})
})
})

View File

@ -10,7 +10,7 @@ describe('profile/_id.vue', () => {
beforeEach(() => {
mocks = {
$t: jest.fn()
$t: jest.fn(),
}
})
@ -26,6 +26,5 @@ describe('profile/_id.vue', () => {
it('renders', () => {
expect(wrapper.findAll('.nuxt-child')).toHaveLength(1)
})
})
})

View File

@ -26,6 +26,5 @@ describe('search-results.vue', () => {
it('renders', () => {
expect(wrapper.findAll('.search-results')).toHaveLength(1)
})
})
})

View File

@ -1,3 +1,3 @@
module.exports = {
render: () => 'test-file-stub'
};
render: () => 'test-file-stub',
}