Skip to content

Commit 8ef34b6

Browse files
Refactor code formatting for consistency and readability
1 parent 16c180f commit 8ef34b6

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

src/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,5 @@ process.on("exit", () => {
4848
logger.flush();
4949
});
5050

51-
5251
export { setLogger } from "./logger.js";
5352
export { BrowserStackMcpServer } from "./server-factory.js";

src/server-factory.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ export class BrowserStackMcpServer {
8080
public getTools(): Record<string, RegisteredTool> {
8181
return this.tools;
8282
}
83-
83+
8484
public getTool(name: string): RegisteredTool | undefined {
8585
return this.tools[name];
8686
}

src/tools/live.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -97,12 +97,12 @@ async function runBrowserSession(rawArgs: any, config: BrowserStackConfig) {
9797
? await launchDesktopSession(args, config)
9898
: await launchMobileSession(args, config);
9999

100-
let response=[
101-
{
102-
type: "text" as const,
103-
text: `✅ Session started. If it didn't open automatically, visit:\n${launchUrl}`,
104-
},
105-
];
100+
let response = [
101+
{
102+
type: "text" as const,
103+
text: `✅ Session started. If it didn't open automatically, visit:\n${launchUrl}`,
104+
},
105+
];
106106

107107
if (globalConfig.REMOTE_MCP) {
108108
response = [

0 commit comments

Comments
 (0)