()
| 583 | |
| 584 | it('should be possible to target exceptional minor + rc + next trains via two PRs', async () => { |
| 585 | const installMocks = () => { |
| 586 | interceptBranchVersionRequest('master', '13.1.0-next.0'); |
| 587 | interceptBranchVersionRequest('13.0.x', '13.0.0-rc.3'); |
| 588 | interceptBranchVersionRequest('12.2.x', '12.2.0-next.0', {exceptionalMinor: true}); |
| 589 | interceptBranchVersionRequest('12.1.x', '12.1.0'); |
| 590 | interceptBranchesListRequest(['12.1.x', '12.2.x', '13.0.x']); |
| 591 | }; |
| 592 | |
| 593 | // First PR to land in FF/RC + main trains. |
| 594 | installMocks(); |
no test coverage detected