Skip to content

Commit

Permalink
#3041 remove skip for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
StarlaStarla committed Oct 11, 2023
1 parent e243fdb commit 0421b02
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ketcher-autotests/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ If you want to run tests from Polymer Editor, add `ENABLE_POLYMER_EDITOR=true` i

Also make sure, that test is not skipped! Check if test starts with
`test.skip('We test something', async ({ page }) => {`
Remove "skip" before running. Than add it back before push - we do not test Polymer Editor on ci/cd for now (will be changed in the future).
Remove "skip" before running.

- **Run app in browser: from root directory "ketcher"**:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ test.describe('Macromolecules delete RNA presets', () => {
await takePageScreenshot(page);
});

test.skip('Should not delete default RNA preset', async ({ page }) => {
test('Should not delete default RNA preset', async ({ page }) => {
await page.getByTestId('cancel-btn').click();

await page.getByTestId('A_A_R_P').click({ button: 'right' });
});

test.skip('Delete copy RNA preset', async ({ page }) => {
test('Delete copy RNA preset', async ({ page }) => {
await page.getByTestId('cancel-btn').click();

await page.getByTestId('A_A_R_P').click({ button: 'right' });
Expand Down

0 comments on commit 0421b02

Please sign in to comment.