Skip to content

Commit

Permalink
Merge branch 'master' into FAT-17044
Browse files Browse the repository at this point in the history
  • Loading branch information
eremv authored Oct 25, 2024
2 parents 70d9d49 + 1f95e6f commit 780ac77
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ describe('Inventory', () => {
volume: 'v.1',
enumeration: 'e.2',
chronology: 'ch.3',
shelvingOrderValue: 'PRT 718 V.1 E.2 CH.3 C.4 SUF',
shelvingOrderValue: 'PRT 3718 _V 11 E 12 CH 13 C 14 SUF',
};

const itemA1 = {
Expand Down
15 changes: 12 additions & 3 deletions cypress/e2e/inventory/subject-browse/subject-browse.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,14 +59,23 @@ describe('Inventory', () => {
InventorySearchAndFilter.switchToBrowseTab();
BrowseSubjects.searchBrowseSubjects(testData.testValue);
BrowseSubjects.checkSearchResultsTable();
BrowseSubjects.checkResultAndItsRow(5, `${testData.testValue}would be here`);
BrowseSubjects.checkResultAndItsRow(
5,
`${testData.testValue}would be hereNo value set-No value set-`,
);
BrowseSubjects.checkPaginationButtons();

BrowseSubjects.clickPreviousPaginationButton();
BrowseSubjects.checkAbsenceOfResultAndItsRow(5, `${testData.testValue}would be here`);
BrowseSubjects.checkAbsenceOfResultAndItsRow(
5,
`${testData.testValue}would be hereNo value set-No value set-`,
);

BrowseSubjects.clickNextPaginationButton();
BrowseSubjects.checkResultAndItsRow(5, `${testData.testValue}would be here`);
BrowseSubjects.checkResultAndItsRow(
5,
`${testData.testValue}would be hereNo value set-No value set-`,
);
},
);
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ describe('MARC', () => {
};

const newFields = [
{ previousFieldTag: '008', tag: '010', content: '$a n00776439' },
{ previousFieldTag: '008', tag: '010', content: '$a n 00776439' },
{
previousFieldTag: '010',
tag: '100',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ describe('MARC', () => {
},
{
rowIndex: 84,
value: 'C388642 Robinson and Associates, Inc.',
value: 'C388642 Robinson & Associates, Inc.',
tag: 710,
boxFourth: '$a C388642 Robinson & Associates, Inc.',
boxFifth: '',
Expand Down

0 comments on commit 780ac77

Please sign in to comment.