Skip to content

Commit

Permalink
Unskip tests and point at civil
Browse files Browse the repository at this point in the history
  • Loading branch information
drummondjm authored Jul 18, 2024
1 parent a7efdff commit 3608e14
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 10 deletions.
2 changes: 1 addition & 1 deletion charts/civil-ccd/values.preview.template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ civil-wa:

civil-service:
java:
image: 'hmctspublic.azurecr.io/civil/service:latest'
image: 'hmctspublic.azurecr.io/civil/service:pr-5088'
keyVaults:
civil:
resourceGroup: civil
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ async function prepareClaimSpecRecordJudgment(api_spec){
await api_spec.recordJudgment(caseWorkerUser, mpScenario, 'DETERMINATION_OF_MEANS', 'PAY_IMMEDIATELY');
}

Scenario.skip('SetAside Default Judgment after judgment error - Spec claim 1v1 - Case taken offline', async ({I, api_spec}) => {
Scenario('SetAside Default Judgment after judgment error - Spec claim 1v1 - Case taken offline', async ({I, api_spec}) => {
if (['preview', 'demo'].includes(config.runningEnv)) {
await api_spec.createClaimWithRepresentedRespondent(config.applicantSolicitorUser, mpScenario);
await api_spec.amendRespondent1ResponseDeadline(config.systemupdate);
Expand All @@ -39,7 +39,7 @@ Scenario.skip('SetAside Default Judgment after judgment error - Spec claim 1v1 -
}
});

Scenario.skip('Record Judgment Spec claim 1v1 with mark paid in full', async ({I, api_spec}) => {
Scenario('Record Judgment Spec claim 1v1 with mark paid in full', async ({I, api_spec}) => {
if (['preview', 'demo'].includes(config.runningEnv)) {
await prepareClaimSpecRecordJudgment(api_spec);
await api_spec.editJudgment(caseWorkerUser, mpScenario, 'DETERMINATION_OF_MEANS', 'PAY_BY_DATE');
Expand All @@ -48,15 +48,15 @@ Scenario.skip('Record Judgment Spec claim 1v1 with mark paid in full', async ({I
}
});

Scenario.skip('Refer To Judge Spec claim 1v1 Defence Received In Time', async ({I, api_spec}) => {
Scenario('Refer To Judge Spec claim 1v1 Defence Received In Time', async ({I, api_spec}) => {
if (['preview', 'demo'].includes(config.runningEnv)) {
await prepareClaimSpecRecordJudgment(api_spec);
console.log('--referToJudgeDefenceReceived--');
await api_spec.referToJudgeDefenceReceived(caseWorkerUser);
}
});

Scenario.skip('SetAside Default Judgment Spec claim 1v1 - Record new judgment after hearing', async ({I, api_spec}) => {
Scenario('SetAside Default Judgment Spec claim 1v1 - Record new judgment after hearing', async ({I, api_spec}) => {
if (['preview', 'demo'].includes(config.runningEnv)) {
await api_spec.createClaimWithRepresentedRespondent(config.applicantSolicitorUser, mpScenario);
await api_spec.amendRespondent1ResponseDeadline(config.systemupdate);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ async function prepareClaimSpecFinalOrderJO(api_spec){
await api_spec.createFinalOrderJO(judgeUser, 'FREE_FORM_ORDER');

}
Scenario.skip('Default judgment Spec claim 1v2 - Set Aside After Order - Record new judgment', async ({I, api_spec}) => {
Scenario('Default judgment Spec claim 1v2 - Set Aside After Order - Record new judgment', async ({I, api_spec}) => {
if (['preview', 'demo'].includes(config.runningEnv)) {
await api_spec.createClaimWithRepresentedRespondent(config.applicantSolicitorUser, 'ONE_V_TWO_SAME_SOL', false );
await api_spec.amendRespondent1ResponseDeadline(config.systemupdate);
Expand All @@ -50,7 +50,7 @@ Scenario.skip('Default judgment Spec claim 1v2 - Set Aside After Order - Record
}
});

Scenario.skip('Default judgment Spec claim 1v2 - Set Aside after defence - Case taken offline', async ({I, api_spec}) => {
Scenario('Default judgment Spec claim 1v2 - Set Aside after defence - Case taken offline', async ({I, api_spec}) => {
if (['preview', 'demo'].includes(config.runningEnv)) {
await api_spec.createClaimWithRepresentedRespondent(config.applicantSolicitorUser, mpScenario, false );
await api_spec.amendRespondent1ResponseDeadline(config.systemupdate);
Expand All @@ -60,7 +60,7 @@ Scenario.skip('Default judgment Spec claim 1v2 - Set Aside after defence - Case
}
});

Scenario.skip('Record Judgment with mark judgment paid Spec claim 1v2', async ({I, api_spec}) => {
Scenario('Record Judgment with mark judgment paid Spec claim 1v2', async ({I, api_spec}) => {
if (['preview', 'demo'].includes(config.runningEnv)) {
console.log('--createClaimWithRepresentedRespondent--');
await prepareClaimSpecFinalOrderJO(api_spec);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@ Scenario('CARM enabled', async ({api_spec_cui}) => {
await api_spec_cui.mediationUnsuccessful(mediationAdmin, carmEnabled);
});

//skip test temporarily, defendant court needs updated/fixed
Scenario.skip('CARM not enabled', async ({api_spec_cui}) => {
Scenario('CARM not enabled', async ({api_spec_cui}) => {
carmEnabled = false;
await prepareClaim(api_spec_cui, carmEnabled);
await api_spec_cui.mediationUnsuccessful(mediationAdmin, carmEnabled);
Expand Down

0 comments on commit 3608e14

Please sign in to comment.