@@ -5,7 +5,7 @@ import { findWdioConfig } from './find.js'
55import { DEFAULT_CONFIG_VALUES , EXTENSION_ID } from '../constants.js'
66import { log } from '../utils/logger.js'
77
8- import type { WebDriverIOConfig } from '../types.js'
8+ import type { WebdriverIOConfig } from '../types.js'
99
1010export const testControllerId = EXTENSION_ID
1111
@@ -19,7 +19,7 @@ type WorkspaceData = {
1919class WdioConfig extends EventEmitter implements vscode . Disposable {
2020 private _isInitialized = false
2121 private _isMultiWorkspace = false
22- private _globalConfig : WebDriverIOConfig
22+ private _globalConfig : WebdriverIOConfig
2323 private _workspaceConfigMap = new Map < string , vscode . WorkspaceFolder > ( )
2424 private _workspaces : WorkspaceData [ ] | undefined
2525
@@ -71,7 +71,7 @@ class WdioConfig extends EventEmitter implements vscode.Disposable {
7171
7272 for ( const prop of _configProperties ) {
7373 const configKey = `${ EXTENSION_ID } .${ prop } `
74- const newValue = config . get < WebDriverIOConfig [ typeof prop ] > ( prop )
74+ const newValue = config . get < WebdriverIOConfig [ typeof prop ] > ( prop )
7575 if ( event . affectsConfiguration ( configKey ) && newValue !== undefined ) {
7676 log . debug ( `Update ${ prop } : ${ newValue } ` )
7777 this . emit ( `update:${ prop } ` , newValue )
@@ -136,7 +136,7 @@ export const configManager = new WdioConfig()
136136// To add install command, the following code seems to be used.
137137// https://github.com/webdriverio/vscode-webdriverio/issues/8
138138// /**
139- // * Generate a default WebDriverIO config file
139+ // * Generate a default WebdriverIO config file
140140// */
141141// export function generateDefaultConfig(workspaceRoot: string): string {
142142// const configPath = path.join(workspaceRoot, 'wdio.conf.js')
@@ -149,8 +149,8 @@ export const configManager = new WdioConfig()
149149// // Generate default config using wdio config command
150150// // This would be implemented through child_process
151151// // For simplicity, we just provide a basic template here
152- // const configTemplate = `// WebDriverIO configuration file
153- // // Generated by WebDriverIO Runner extension
152+ // const configTemplate = `// WebdriverIO configuration file
153+ // // Generated by WebdriverIO Runner extension
154154// exports.config = {
155155// runner: 'local',
156156// specs: [
0 commit comments