Skip to content

Commit

Permalink
Release v5.1.1 (#1075)
Browse files Browse the repository at this point in the history
  • Loading branch information
mariia-aloshyna authored Mar 4, 2022
1 parent bb3be3d commit edfe678
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## **5.2.0** (in progress)

## [5.1.0](https://github.com/folio-org/ui-data-import/tree/v5.1.0) (2022-03-04)
## [5.1.1](https://github.com/folio-org/ui-data-import/tree/v5.1.1) (2022-03-04)

### Features added:
* Cover `<MatchingFieldsManager>` component with tests (UIDATIMP-712)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@folio/data-import",
"version": "5.1.0",
"version": "5.1.1",
"description": "Data Import manager",
"main": "src/index.js",
"repository": "folio-org/ui-data-import",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ describe('IncomingSectionStatic view', () => {
it('should be rendered with empty TEXT static value type', () => {
const { getByText } = renderIncomingSectionStatic(incomingSectionStaticWithoutText);

expect(getByText('No value set')).toBeInTheDocument();
expect(getByText('-')).toBeInTheDocument();
});
});
});
Expand All @@ -109,7 +109,7 @@ describe('IncomingSectionStatic view', () => {
it('should be rendered with empty NUMBER static value type', () => {
const { getByText } = renderIncomingSectionStatic(incomingSectionStaticWithoutNumber);

expect(getByText('No value set')).toBeInTheDocument();
expect(getByText('-')).toBeInTheDocument();
});
});
});
Expand All @@ -127,7 +127,7 @@ describe('IncomingSectionStatic view', () => {
it('should be rendered with empty EXACT_DATE static value type', () => {
const { getByText } = renderIncomingSectionStatic(incomingSectionStaticWithoutDate);

expect(getByText('No value set')).toBeInTheDocument();
expect(getByText('-')).toBeInTheDocument();
});
});
});
Expand All @@ -146,7 +146,7 @@ describe('IncomingSectionStatic view', () => {
it('should be rendered with empty DATE_RANGE static value type', () => {
const { getAllByText } = renderIncomingSectionStatic(incomingSectionStaticWithoutDateRange);

expect(getAllByText('No value set').length).toBe(2);
expect(getAllByText('-').length).toBe(2);
});
});
});
Expand Down

0 comments on commit edfe678

Please sign in to comment.