Skip to content

Commit 68703da

Browse files
committed
fix startup test indentation
1 parent 34cd893 commit 68703da

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.env.example

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ GOOGLE_CLOUD_PROJECT="mcp-vibetest"
33
DEFAULT_MODEL=gemini-2.5-flash
44
DEFAULT_LLM_PROVIDER=gemini
55
OPENAI_API_KEY=your_openai_key
6-
OPENROUTER_API_KEY="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"DEFAULT_LLM_PROVIDER=gemini
7-
USE_LEARNING_HISTORY=false
6+
OPENROUTER_API_KEY=your_openrouter_key
7+
USE_LEARNING_HISTORY=false

tests/startup.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ describe('Server Startup and Response Time', () => {
1313

1414
const projectRoot = path.resolve(__dirname, '..');
1515
const indexPath = path.join(projectRoot, 'build', 'index.js');
16-
const requestPath = path.join(projectRoot, 'request1.json');
16+
const requestPath = path.join(projectRoot, 'request.json');
1717

1818
const requestJson = fs.readFileSync(requestPath, 'utf-8');
1919

@@ -77,4 +77,4 @@ describe('Server Startup and Response Time', () => {
7777

7878
serverProcess.kill();
7979
}, 25000); // 25 second test timeout
80-
});
80+
});

0 commit comments

Comments
 (0)