Skip to content

Commit 3c30f2f

Browse files
committed
lint
1 parent 106017c commit 3c30f2f

4 files changed

Lines changed: 8 additions & 0 deletions

File tree

meteor/__mocks__/defaultCollectionObjects.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,11 @@ export function defaultRundownPlaylist(_id: RundownPlaylistId, studioId: StudioI
5252
type: 'none' as any,
5353
},
5454
rundownIdsInOrder: [],
55+
tTimers: [
56+
{ index: 1, label: '', mode: null },
57+
{ index: 2, label: '', mode: null },
58+
{ index: 3, label: '', mode: null },
59+
],
5560
}
5661
}
5762
export function defaultRundown(

meteor/server/__tests__/cronjobs.test.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -618,6 +618,7 @@ describe('cronjobs', () => {
618618
type: PlaylistTimingType.None,
619619
},
620620
activationId: protectString(''),
621+
tTimers: [] as any,
621622
})
622623

623624
return {

meteor/server/api/__tests__/externalMessageQueue.test.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ describe('Test external message queue static methods', () => {
4141
type: PlaylistTimingType.None,
4242
},
4343
rundownIdsInOrder: [protectString('rundown_1')],
44+
tTimers: [] as any,
4445
})
4546
await Rundowns.mutableCollection.insertAsync({
4647
_id: protectString('rundown_1'),

meteor/server/api/__tests__/peripheralDevice.test.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ describe('test peripheralDevice general API methods', () => {
7878
type: PlaylistTimingType.None,
7979
},
8080
rundownIdsInOrder: [rundownID],
81+
tTimers: [] as any,
8182
})
8283
await Rundowns.mutableCollection.insertAsync({
8384
_id: rundownID,

0 commit comments

Comments
 (0)