Skip to content

Commit 64c48ca

Browse files
committed
style: apply style
[skip ci]
1 parent b09f0d2 commit 64c48ca

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

packages/vscode-webdriverio/tests/package.test.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,15 @@ import { describe, it, expect } from 'vitest'
33

44
import pkg from '../package.json' with { type: 'json' }
55

6-
describe('package.json', ()=>{
7-
6+
describe('package.json', () => {
87
const testPattern = []
98
for (const [key, value] of Object.entries(DEFAULT_CONFIG_VALUES)) {
109
testPattern.push([key, value])
1110
}
1211

1312
const pkgConfig = pkg.contributes.configuration.properties
1413

15-
it.each(testPattern)('should set default value - %s', (key, value)=>{
14+
it.each(testPattern)('should set default value - %s', (key, value) => {
1615
// @ts-ignore
1716
const pkgConfigValue = pkgConfig[`${EXTENSION_ID}.${key}`]['default']
1817
expect(pkgConfigValue).toStrictEqual(value)

0 commit comments

Comments
 (0)