Skip to content

Commit

Permalink
Bump version to 0.93.2
Browse files Browse the repository at this point in the history
  • Loading branch information
supriyatw committed Jan 19, 2021
1 parent 9814000 commit fd74bd7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "bahmni-form-controls-msf",
"version": "0.93.1",
"version": "0.93.2",
"description": "Repository for form controls",
"license": "GPL-2.0",
"main": "./dist/bundle.js",
Expand Down
7 changes: 4 additions & 3 deletions test/components/Container.spec.js
Expand Up @@ -87,7 +87,7 @@ describe('Container', () => {
};

const formFieldPath = 'SingleObs.1/1-0';
const addedFormFieldPath = 'SingleObs.1/1-1';
const newFormFieldPath = 'SingleObs.1/1-1';
const dataSource = immutableMap({
concept: {
conceptClass: 'Misc',
Expand Down Expand Up @@ -176,7 +176,7 @@ describe('Container', () => {
type: 'obsControl',
units: '/min',
},
formFieldPath: addedFormFieldPath,
formFieldPath: newFormFieldPath,
value: { value: '1', comment: undefined },
dataSource,
});
Expand Down Expand Up @@ -480,7 +480,8 @@ describe('Container', () => {
});

it('should return false if formFieldPath is not latest', () => {
expect(wrapper.instance().canAddNextFormFieldPath(obsTreeWithAddedControl, formFieldPath)).to.be.eql(false);
expect(wrapper.instance()
.canAddNextFormFieldPath(obsTreeWithAddedControl, formFieldPath)).to.be.eql(false);
});
});

Expand Down

0 comments on commit fd74bd7

Please sign in to comment.