Skip to content

Commit

Permalink
version update
Browse files Browse the repository at this point in the history
  • Loading branch information
olusegz07 committed Oct 28, 2024
1 parent 0362129 commit 85bde97
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hmcts/ccd-case-ui-toolkit",
"version": "7.0.70-testing",
"version": "7.0.72",
"engines": {
"node": ">=18.19.0"
},
Expand Down
2 changes: 1 addition & 1 deletion projects/ccd-case-ui-toolkit/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hmcts/ccd-case-ui-toolkit",
"version": "7.0.70-testing",
"version": "7.0.72",
"engines": {
"node": ">=18.19.0"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1812,7 +1812,7 @@ describe('CaseEditPageComponent - all other tests', () => {
comp.currentPage = wizardPage;
});

xit('should validate mandatory fields and log error message', () => {
it('should validate mandatory fields and log error message', () => {
wizardPage.case_fields = [
aCaseField('Invalidfield1', 'Invalidfield1', 'Text', 'MANDATORY', null),
aCaseField('Invalidfield2', 'Invalidfield2', 'Text', 'MANDATORY', null),
Expand Down Expand Up @@ -1951,7 +1951,7 @@ describe('CaseEditPageComponent - all other tests', () => {
});
});

xit('should validate mandatory complex type fields and log error message', () => {
it('should validate mandatory complex type fields and log error message', () => {
const complexSubField1: CaseField = aCaseField(
'childField1',
'childField1',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ describe('FieldReadComponent', () => {
expect(paletteService.getFieldComponentClass).toHaveBeenCalledWith(CASE_FIELD, false);
});

xit('should inject component instance as child', () => {
it('should inject component instance as child', () => {
fixture.detectChanges();

const fieldReadLabelComponent = de.query($FIELD_READ_LABEL);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ describe('FieldWriteComponent', () => {
expect(paletteService.getFieldComponentClass).toHaveBeenCalledWith(CASE_FIELD, true);
});

xit('should inject component instance as child', () => {
it('should inject component instance as child', () => {
const divWrapper = de.children[0];
const ngContent = divWrapper.children[0];
expect(ngContent.children.length).toBe(1);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ describe('FirstErrorPipe', () => {
expect(message).toBe(ERROR_MESSAGE);
});

xit('should return exact error along with label name when field value is MANDATORY', () => {
it('should return exact error along with label name when field value is MANDATORY', () => {
translationServiceMock.getTranslationWithReplacements$.and.callFake(
(someString: string, someReplacements: Replacements) => of(someString.replace('%FIELDLABEL%', someReplacements['FIELDLABEL'])));
const message = firstError.transform({
Expand Down

0 comments on commit 85bde97

Please sign in to comment.