Skip to content

Commit

Permalink
#3230 - Support parsing KET file for macromolecules on ketcher side
Browse files Browse the repository at this point in the history
- added ket macromolecules deserializer for monomers and bonds
- changed entities coordinate system to angstrems
  • Loading branch information
rrodionov91 committed Sep 12, 2023
1 parent 5e452d1 commit c5db77d
Show file tree
Hide file tree
Showing 21 changed files with 786 additions and 51 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import { test } from '@playwright/test';
import { openFileAndAddToCanvas, takeEditorScreenshot } from '@utils';
import { turnOnMacromoleculesEditor } from '@utils/macromolecules';

test.describe('Ket Deserialize', () => {
test.beforeEach(async ({ page }) => {
await page.goto('');
await turnOnMacromoleculesEditor(page);
});
test('Open ket file with monomers and bonds', async ({ page }) => {
/*
Test case: #3230 - Support parsing KET file for macromolecules on ketcher side
Description: Ket Deserialize
*/
await openFileAndAddToCanvas('KET/monomers-with-bonds.ket', page);
await takeEditorScreenshot(page);
});
});
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit c5db77d

Please sign in to comment.