@@ -32,7 +32,8 @@ describe('fullcalendar/eventSource test suite', () => {
3232 const calendar = {
3333 id : 'calendar-id-123' ,
3434 color : '#ff00ff' ,
35- readOnly : false ,
35+ canCreateObject : true ,
36+ canModifyObject : true ,
3637 }
3738
3839 const eventSourceFunction = eventSource ( )
@@ -52,7 +53,8 @@ describe('fullcalendar/eventSource test suite', () => {
5253 const calendar = {
5354 id : 'calendar-id-123' ,
5455 color : '#ff00ff' ,
55- readOnly : true ,
56+ canCreateObject : false ,
57+ canModifyObject : false ,
5658 }
5759
5860 const eventSourceFunction = eventSource ( )
@@ -82,7 +84,8 @@ describe('fullcalendar/eventSource test suite', () => {
8284 const calendar = {
8385 id : 'calendar-id-123' ,
8486 color : '#ff00ff' ,
85- readOnly : true ,
87+ canCreateObject : false ,
88+ canModifyObject : false ,
8689 }
8790
8891 const getTimezoneForId = vi . fn ( )
@@ -151,7 +154,8 @@ describe('fullcalendar/eventSource test suite', () => {
151154 const calendar = {
152155 id : 'calendar-id-123' ,
153156 color : '#ff00ff' ,
154- readOnly : true ,
157+ canCreateObject : false ,
158+ canModifyObject : false ,
155159 }
156160
157161 const getTimezoneForId = vi . fn ( )
@@ -215,7 +219,8 @@ describe('fullcalendar/eventSource test suite', () => {
215219 const calendar = {
216220 id : 'calendar-id-123' ,
217221 color : '#ff00ff' ,
218- readOnly : true ,
222+ canCreateObject : false ,
223+ canModifyObject : false ,
219224 }
220225
221226 const getTimezoneForId = vi . fn ( )
@@ -282,7 +287,8 @@ describe('fullcalendar/eventSource test suite', () => {
282287 const calendar = {
283288 id : 'calendar-id-123' ,
284289 color : '#ff00ff' ,
285- readOnly : true ,
290+ canCreateObject : false ,
291+ canModifyObject : false ,
286292 }
287293
288294 const getTimezoneForId = vi . fn ( )
0 commit comments