@@ -29,7 +29,7 @@ describe("ActiveTerminal", () => {
2929 const id = "term-123" ;
3030 const createdAt = Date . now ( ) ;
3131
32- const active = new ActiveTerminal ( id , spec , mockPty , ringBuffer , createdAt ) ;
32+ const active = new ActiveTerminal ( id , spec , mockPty , ringBuffer , undefined , createdAt ) ;
3333
3434 expect ( active . id ) . toBe ( id ) ;
3535 expect ( active . spec ) . toBe ( spec ) ;
@@ -45,7 +45,7 @@ describe("ActiveTerminal", () => {
4545 const id = "term-123" ;
4646 const createdAt = Date . now ( ) ;
4747
48- const active = new ActiveTerminal ( id , spec , mockPty , ringBuffer , createdAt ) ;
48+ const active = new ActiveTerminal ( id , spec , mockPty , ringBuffer , undefined , createdAt ) ;
4949 const dto = active . toDTO ( ) ;
5050
5151 expect ( dto ) . toEqual ( {
@@ -115,7 +115,7 @@ describe("ActiveTerminal", () => {
115115 const id = "term-123" ;
116116 const createdAt = Date . now ( ) ;
117117
118- const active = new ActiveTerminal ( id , spec , mockPty , ringBuffer , createdAt ) ;
118+ const active = new ActiveTerminal ( id , spec , mockPty , ringBuffer , undefined , createdAt ) ;
119119 const row = active . toRow ( ) ;
120120
121121 // Should be same as DTO
0 commit comments