Skip to content

Commit

Permalink
soft assertion for multiple expects
Browse files Browse the repository at this point in the history
  • Loading branch information
jvigliotta committed Mar 17, 2022
1 parent 091d5e8 commit 7b9db65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion e2e/tests/persistence/persistability.e2e.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ test.describe('Persistence operations', () => {

const menuOptions = page.locator('.c-menu ul');

await expect(menuOptions).toContainText(['Open In New Tab', 'View', 'Create Link']);
await expect.soft(menuOptions).toContainText(['Open In New Tab', 'View', 'Create Link']);
await expect(menuOptions).not.toContainText(['Move', 'Duplicate', 'Remove', 'Add New Folder', 'Edit Properties...', 'Export as JSON', 'Import from JSON']);
});
test.fixme('Cannot move a previously created domain object to non-peristable boject in Move Modal', async ({ page }) => {
Expand Down

0 comments on commit 7b9db65

Please sign in to comment.