Skip to content

Commit

Permalink
eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
Carsten König committed Nov 21, 2024
1 parent 6b8c638 commit f7e97d4
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export default [
}],
quotes: ['error', 'single'],
},
files: ['src/**/*.{js,vue,ts,json}'],
files: ['src/**/*.{js,vue,ts,json}', 'tests/**/*.ts}'],
settings: {
'vue-i18n': {
localeDir: {
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/tests/Routing.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { test, expect } from '@playwright/test'
import { setupClusterConnection } from '../helpers'
import { withElastic } from '../mocks'

test.describe.configure({ mode: 'parallel' });
test.describe.configure({ mode: 'parallel' })

withElastic(({ mockElastic, elastic }) => {
test.describe(`elasticsearch ${elastic.version}`, () => {
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/tests/pages/Base.spec.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { test, expect } from '@playwright/test'
import { openElasticvue } from '../../helpers'

test.describe.configure({ mode: 'parallel' });
test.describe.configure({ mode: 'parallel' })

test.describe('base', () => {
test('has a title', async ({ page }) => {
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/tests/pages/ClusterManagement.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { test, expect, Page } from '@playwright/test'
import { setupClusterConnection } from '../../helpers'
import { withElastic } from '../../mocks'

test.describe.configure({ mode: 'parallel' });
test.describe.configure({ mode: 'parallel' })

const setupClusterSelectionTest = async (page: Page) => {
await setupClusterConnection(page)
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/tests/pages/HomeStatus.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { test, expect } from '@playwright/test'
import { setupClusterConnection } from '../../helpers'
import { withElastic } from '../../mocks'

test.describe.configure({ mode: 'parallel' });
test.describe.configure({ mode: 'parallel' })

withElastic(({ mockElastic, elastic }) => {
test.describe(`elasticsearch ${elastic.version}`, () => {
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/tests/pages/Indices.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { test, expect } from '@playwright/test'
import { setupClusterConnection } from '../../helpers'
import { withElastic } from '../../mocks'

test.describe.configure({ mode: 'parallel' });
test.describe.configure({ mode: 'parallel' })

const setup = async (page: any, mockElastic: any) => {
await mockElastic(page)
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/tests/pages/Nodes.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { test, expect } from '@playwright/test'
import { setupClusterConnection } from '../../helpers'
import { withElastic } from '../../mocks'

test.describe.configure({ mode: 'parallel' });
test.describe.configure({ mode: 'parallel' })

withElastic(({ mockElastic, elastic }) => {
test.describe(`elasticsearch ${elastic.version}`, () => {
Expand Down

0 comments on commit f7e97d4

Please sign in to comment.