Skip to content

Commit

Permalink
Fix linter and missing import
Browse files Browse the repository at this point in the history
  • Loading branch information
martinboulais committed Dec 19, 2024
1 parent ea89858 commit 2c091ce
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/public/runs/overview.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const {
waitForDownload,
expectLink,
expectUrlParams,
expectAttributeValue,
expectAttributeValue, getColumnCellsInnerTexts,
} = require('../defaults.js');
const { RUN_QUALITIES, RunQualities } = require('../../../lib/domain/enums/RunQualities.js');
const { resetDatabaseContent } = require('../../utilities/resetDatabaseContent.js');
Expand Down Expand Up @@ -1044,12 +1044,12 @@ module.exports = () => {

await expectLink(page, `${popoverSelector} a:nth-of-type(1)`, {
href: 'http://localhost:8081/?q={%22partition%22:{%22match%22:%22TDI59So3d%22},'
+ '%22run%22:{%22match%22:%22104%22},%22severity%22:{%22in%22:%22W%20E%20F%22}}',
+ '%22run%22:{%22match%22:%22104%22},%22severity%22:{%22in%22:%22W%20E%20F%22}}',
innerText: 'Infologger FLP',
});
await expectLink(page, `${popoverSelector} a:nth-of-type(2)`, {
href: 'http://localhost:8082/' +
'?page=layoutShow&runNumber=104&definition=COMMISSIONING&detector=CPV&pdpBeamType=cosmic&runType=COSMICS',
'?page=layoutShow&runNumber=104&definition=COMMISSIONING&detector=CPV&pdpBeamType=cosmic&runType=COSMICS',
innerText: 'QCG',
});

Expand Down

0 comments on commit 2c091ce

Please sign in to comment.