File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 4242 "scripts" : {
4343 "build" : " tsup" ,
4444 "dev" : " tsup --watch" ,
45- "test" : " vitest" ,
45+ "test" : " vitest run" ,
46+ "test:watch" : " vitest watch" ,
4647 "version-packages" : " changeset version" ,
4748 "changeset" : " changeset" ,
4849 "release" : " pnpm build && changeset publish"
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import type { AddressInfo } from "node:net";
1010import { StreamableHTTPClientTransport } from "@modelcontextprotocol/sdk/client/streamableHttp.js" ;
1111import { Client } from "@modelcontextprotocol/sdk/client/index.js" ;
1212import { createMcpHandler } from "../src/index" ;
13- import { withMcpAuth } from "../src/next /auth-wrapper" ;
13+ import { withMcpAuth } from "../src/auth /auth-wrapper" ;
1414
1515describe ( "e2e" , ( ) => {
1616 let server : Server ;
Original file line number Diff line number Diff line change 11import { describe , it , expect } from 'vitest' ;
2- import { calculateEndpoints } from '../src/next /mcp-api-handler' ;
2+ import { calculateEndpoints } from '../src/handler /mcp-api-handler' ;
33
44describe ( 'calculateEndpoints' , ( ) => {
55 it ( 'derives all endpoints from basePath' , ( ) => {
You can’t perform that action at this time.
0 commit comments