Skip to content

Commit

Permalink
chore: fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
MarshallOfSound committed Nov 2, 2022
1 parent af5fd19 commit 9beb849
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/api/core/test/fast/read-package-json_spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ describe('read-package-json', () => {
triggerMutatingHook: (_hookName: string, pj: any) => Promise.resolve(pj),
triggerHook: () => Promise.resolve(),
overrideStartLogic: () => Promise.resolve(false),
getHookListrTasks: () => Promise.resolve([]),
},
} as ResolvedForgeConfig)
).to.deep.equal(require('../../package.json'));
Expand All @@ -43,6 +44,7 @@ describe('read-package-json', () => {
triggerMutatingHook: () => Promise.resolve('test_mut'),
triggerHook: () => Promise.resolve(),
overrideStartLogic: () => Promise.resolve(false),
getHookListrTasks: () => Promise.resolve([]),
},
} as ResolvedForgeConfig)
).to.deep.equal('test_mut');
Expand Down

0 comments on commit 9beb849

Please sign in to comment.