feat: e2e 테스트 실행 및 에러 수정
This commit is contained in:
@@ -29,6 +29,9 @@ export type { ReservedTurnView } from './turns/reservedTurns.js';
|
||||
export type { JsonObject, JsonArray } from './context.js';
|
||||
|
||||
const isMain = (): boolean => {
|
||||
if (typeof process.env.NODE_APP_INSTANCE === 'string') {
|
||||
return true;
|
||||
}
|
||||
if (!process.argv[1]) {
|
||||
return false;
|
||||
}
|
||||
|
||||
@@ -26,5 +26,5 @@ export const formatSseFrame = (frame: SseFrame): string => {
|
||||
}
|
||||
|
||||
lines.push('');
|
||||
return lines.join('\n');
|
||||
return `${lines.join('\n')}\n`;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user