[ACA-4196] [ACA-4219] [ACA-4283] Delete some tests and reinclude some others (#2038)

* [ACA-1496] Delete C306956 because it never worked

* [ACA-4219] Remove C325049 - not worth to automate

* [ACA-4283] Reinclude tests failing on cluster
This commit is contained in:
Iulia Burcă
2021-03-05 09:46:56 +02:00
committed by GitHub
parent fc459c9955
commit 1c81c0c821
3 changed files with 2 additions and 30 deletions

View File

@@ -141,18 +141,6 @@ describe('Create file from template', () => {
await page.closeOpenDialogs();
});
it('[C325049] Select template - dialog UI - when no templates exist in the repo', async () => {
await sidenav.openCreateFileFromTemplateDialog();
await selectTemplateDialog.waitForDialogToOpen();
expect(await selectTemplateDialog.getDialogTitle()).toEqual('Select a document template');
expect(await selectTemplateDialog.dataTable.isEmpty()).toBe(true, 'Datatable is not empty');
expect(await selectTemplateDialog.dataTable.getEmptyListText()).toEqual('No results found');
expect(await selectTemplateDialog.breadcrumb.currentFolder.getText()).toEqual('Node Templates');
expect(await selectTemplateDialog.isNextButtonEnabled()).toBe(false, 'Next button is not disabled');
expect(await selectTemplateDialog.isCancelButtonEnabled()).toBe(true, 'Cancel button is not enabled');
});
describe('with existing templates', () => {
beforeAll(async () => {
await adminApiActions.createNodeTemplatesHierarchy(templates);