Skip to content

Commit

Permalink
CIV-0000 unskip minti tests (#4995)
Browse files Browse the repository at this point in the history
* unskip tests

* unskip test
  • Loading branch information
drummondjm authored Oct 24, 2024
1 parent 61d5ce5 commit bcfef6c
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ async function prepareClaim(api_spec, mpScenario) {
await api_spec.createClaimWithRepresentedRespondent(config.applicantSolicitorUser, mpScenario, false, true, claimAmountPenniesIntermediate);
}

Scenario.skip('1v1 FULL_DEFENCE Intermediate claim Specified @api-nonprod-specified', async ({api_spec}) => {
Scenario('1v1 FULL_DEFENCE Intermediate claim Specified @api-nonprod-specified', async ({api_spec}) => {
const mpScenario = 'ONE_V_ONE';
await prepareClaim(api_spec, mpScenario);
await api_spec.defendantResponse(config.defendantSolicitorUser, 'FULL_DEFENCE', mpScenario, 'AWAITING_APPLICANT_INTENTION', false, true, claimAmountIntermediate);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ async function prepareClaim(api, mpScenario, claimAmount) {
await api.scheduleHearing(hearingCenterAdminToBeUsed, 'FAST_TRACK_TRIAL');
}

Scenario.skip('1v1 Create Unspecified Intermediate Track claim @api-nonprod', async ({api}) => {
Scenario('1v1 Create Unspecified Intermediate Track claim @api-nonprod', async ({api}) => {
const mpScenario = 'ONE_V_ONE';
await prepareClaim(api, mpScenario, intermediateTrackClaimAmount, track);
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ async function prepareClaim(api_spec, mpScenario) {
await api_spec.createClaimWithRepresentedRespondent(config.applicantSolicitorUser, mpScenario, false, true, claimAmountPenniesMulti);
}

Scenario.skip('1v1 full defence Multi claim Specified @api-nonprod-specified', async ({api_spec}) => {
Scenario('1v1 full defence Multi claim Specified @api-nonprod-specified', async ({api_spec}) => {
const mpScenario = 'ONE_V_ONE';
await prepareClaim(api_spec, mpScenario);
await api_spec.defendantResponse(config.defendantSolicitorUser, 'FULL_DEFENCE', mpScenario, 'AWAITING_APPLICANT_INTENTION', false, true, claimAmountMulti);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ async function prepareClaim(api, mpScenario, claimAmount) {
await api.scheduleHearing(hearingCenterAdminToBeUsed, 'FAST_TRACK_TRIAL');
}

Scenario.skip('1v1 Create Unspecified Multi Track claim @api-nonprod', async ({api}) => {
Scenario('1v1 Create Unspecified Multi Track claim @api-nonprod', async ({api}) => {
const mpScenario = 'ONE_V_ONE';
await prepareClaim(api, mpScenario, multiTrackClaimAmount);
});
Expand Down
4 changes: 2 additions & 2 deletions e2e/tests/ui_tests/sdo/minti_cp_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ let civilCaseReference;

Feature('Intermediate and Multi tracks - Download order template Journey - Upload Bundle @non-prod-e2e-ft');

Scenario.skip('1v2 Same Solicitor Int Track - Download order template - Upload Bundle', async ({api, I}) => {
Scenario('1v2 Same Solicitor Int Track - Download order template - Upload Bundle', async ({api, I}) => {
const mpScenario = 'ONE_V_TWO_ONE_LEGAL_REP';
civilCaseReference = await api.createClaimWithRepresentedRespondent(config.applicantSolicitorUser, mpScenario, intermediateTrackClaimAmount, mintiEnabled);
await api.notifyClaim(config.applicantSolicitorUser);
Expand All @@ -30,7 +30,7 @@ Scenario.skip('1v2 Same Solicitor Int Track - Download order template - Upload B
await I.evidenceUpload(civilCaseReference, true, true, true, mpScenario);
});

Scenario.skip('1v2 Different Solicitor Multi Track claim - Download order template - Upload Bundle', async ({api, I}) => {
Scenario('1v2 Different Solicitor Multi Track claim - Download order template - Upload Bundle', async ({api, I}) => {
const mpScenario = 'ONE_V_TWO_TWO_LEGAL_REP';
civilCaseReference = await api.createClaimWithRepresentedRespondent(config.applicantSolicitorUser, mpScenario, claimAmountMulti, mintiEnabled);
await api.notifyClaim(config.applicantSolicitorUser);
Expand Down

0 comments on commit bcfef6c

Please sign in to comment.