Skip to content

Commit 306a89b

Browse files
Tolerblancsummersummerwhyezcolin2
committed
test: 노드 컬러 추가에 따른 테스트 코드 변경
Co-authored-by: Summer Min <[email protected]> Co-authored-by: ez <[email protected]>
1 parent 4d0ec61 commit 306a89b

File tree

4 files changed

+12
-0
lines changed

4 files changed

+12
-0
lines changed

apps/backend/src/edge/edge.controller.spec.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ describe('EdgeController', () => {
8181
id: 3,
8282
x: 0,
8383
y: 0,
84+
color: '#FFFFFF',
8485
title: 'Node Title',
8586
page: null,
8687
outgoingEdges: [],
@@ -91,6 +92,7 @@ describe('EdgeController', () => {
9192
id: 4,
9293
x: 0,
9394
y: 0,
95+
color: '#FFFFFF',
9496
title: 'Node Title',
9597
page: null,
9698
outgoingEdges: [],
@@ -101,6 +103,7 @@ describe('EdgeController', () => {
101103
id: 5,
102104
x: 0,
103105
y: 0,
106+
color: '#FFFFFF',
104107
title: 'Node Title',
105108
page: null,
106109
outgoingEdges: [],

apps/backend/src/edge/edge.service.spec.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ describe('EdgeService', () => {
6464
id: 3,
6565
x: 0,
6666
y: 0,
67+
color: '#FFFFFF',
6768
title: 'Node Title',
6869
page: null,
6970
outgoingEdges: [],
@@ -74,6 +75,7 @@ describe('EdgeService', () => {
7475
id: 5,
7576
x: 0,
7677
y: 0,
78+
color: '#FFFFFF',
7779
title: 'Node Title',
7880
page: null,
7981
outgoingEdges: [],
@@ -143,6 +145,7 @@ describe('EdgeService', () => {
143145
id: 3,
144146
x: 0,
145147
y: 0,
148+
color: '#FFFFFF',
146149
title: 'Node Title',
147150
page: null,
148151
outgoingEdges: [],
@@ -153,6 +156,7 @@ describe('EdgeService', () => {
153156
id: 4,
154157
x: 0,
155158
y: 0,
159+
color: '#FFFFFF',
156160
title: 'Node Title',
157161
page: null,
158162
outgoingEdges: [],
@@ -163,6 +167,7 @@ describe('EdgeService', () => {
163167
id: 5,
164168
x: 0,
165169
y: 0,
170+
color: '#FFFFFF',
166171
title: 'Node Title',
167172
page: null,
168173
outgoingEdges: [],
@@ -173,6 +178,7 @@ describe('EdgeService', () => {
173178
id: 7,
174179
x: 0,
175180
y: 0,
181+
color: '#FFFFFF',
176182
title: 'Node Title',
177183
page: null,
178184
outgoingEdges: [],

apps/backend/src/node/node.service.spec.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ describe('NodeService', () => {
7070
id: 1,
7171
x: 0,
7272
y: 0,
73+
color: '#FFFFFF',
7374
title: 'Node Title',
7475
page: null,
7576
outgoingEdges: [],
@@ -185,6 +186,7 @@ describe('NodeService', () => {
185186
id: 1,
186187
x: 0,
187188
y: 0,
189+
color: '#FFFFFF',
188190
title: 'Node Title',
189191
page: null,
190192
outgoingEdges: [],

apps/backend/src/page/page.service.spec.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@ describe('PageService', () => {
120120
id: 1,
121121
x: 0,
122122
y: 0,
123+
color: '#FFFFFF',
123124
page: null,
124125
outgoingEdges: [],
125126
incomingEdges: [],

0 commit comments

Comments
 (0)