You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Tests in mol-files-export-import-query-features.spec.ts contains lots of duplicate code like:
await selectTopPanelButton(TopPanelButton.Save, page);
await clickOnFileFormatDropdown(page);
await page.getByTestId('SDF V2000-option').click();
const sdfFileV2000Expected = page
.getByTestId('sdf-preview-area-text')
.inputValue();
// Save it to test-data if no file in where
await saveToFile(
'SDF/Query-Feature/Chirality-expected.sdf',
await sdfFileV2000Expected,
);
await pressButton(page, 'Cancel');
Consider usage of verifyFileExport function (extend its functionality if needed)
The text was updated successfully, but these errors were encountered:
Tests in
mol-files-export-import-query-features.spec.ts
contains lots of duplicate code like:Consider usage of
verifyFileExport
function (extend its functionality if needed)The text was updated successfully, but these errors were encountered: