We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d45b7ad commit 73c4c85Copy full SHA for 73c4c85
1 file changed
tests/lib/orchestrator.test.ts
@@ -777,8 +777,8 @@ describe('orchestrator', () => {
777
await (orchestrator as any).reconcile();
778
779
const calls = (worktreeMod.createWorktree as any).mock.calls;
780
- const noDepCall = calls.find((c: any) => c[0].branch === 'mc/no-deps');
781
- const withDepCall = calls.find((c: any) => c[0].branch === 'mc/with-deps');
+ const noDepCall = calls.find((c: any) => c[0].branch.includes('no-deps'));
+ const withDepCall = calls.find((c: any) => c[0].branch.includes('with-deps'));
782
783
expect(noDepCall[0].startPoint).toBe('def456');
784
expect(withDepCall[0].startPoint).toBe('mc/integration-plan-1');
0 commit comments