mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-01-22 18:30:09 +00:00
fix(tests): remove non-existent taskIdsToUnlink from test expectations
The deleteTaskRepeatCfg action does not have a taskIdsToUnlink property. Removed this property from test expectations to match the actual action definition. This was causing TypeScript compilation errors in the test file.
This commit is contained in:
parent
d9cdbf43f2
commit
b8d05a2aa7
1 changed files with 0 additions and 2 deletions
|
|
@ -194,7 +194,6 @@ describe('TaskRepeatCfgService', () => {
|
|||
jasmine.objectContaining({
|
||||
type: TaskSharedActions.deleteTaskRepeatCfg.type,
|
||||
taskRepeatCfgId: id,
|
||||
taskIdsToUnlink: [mockTask.id],
|
||||
}),
|
||||
);
|
||||
});
|
||||
|
|
@ -300,7 +299,6 @@ describe('TaskRepeatCfgService', () => {
|
|||
jasmine.objectContaining({
|
||||
type: TaskSharedActions.deleteTaskRepeatCfg.type,
|
||||
taskRepeatCfgId: 'cfg-123',
|
||||
taskIdsToUnlink: [],
|
||||
}),
|
||||
);
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue