mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-07-31 17:38:28 +00:00
[ACA-2171] enable copy and move to library tests (#933)
This commit is contained in:
committed by
Denys Vuika
parent
9ccd430087
commit
58272f7fbe
@@ -239,8 +239,7 @@ describe('Copy content', () => {
|
||||
expect(await dataTable.isItemPresent(file3InFolder)).toBe(true, `${file3InFolder} not present in destination folder`);
|
||||
});
|
||||
|
||||
// TODO disabled until ACA-2171 is fixed
|
||||
xit('Copy items into a library - [C280282]', async () => {
|
||||
it('Copy items into a library - [C280282]', async () => {
|
||||
await dataTable.selectMultipleItems([file1, folder1]);
|
||||
await toolbar.clickMoreActionsCopy();
|
||||
await copyDialog.selectLocation('File Libraries');
|
||||
@@ -324,8 +323,7 @@ describe('Copy content', () => {
|
||||
expect(await dataTable.isItemPresent(`${existingFile}-1.txt`)).toBe(true, `${existingFile}-1.txt not present in destination folder`);
|
||||
});
|
||||
|
||||
// TODO disabled until ACA-2171 is fixed
|
||||
xit('Copy items into a library - [C291899]', async () => {
|
||||
it('Copy items into a library - [C291899]', async () => {
|
||||
await dataTable.selectItem(file1, source);
|
||||
await toolbar.clickMoreActionsCopy();
|
||||
await copyDialog.selectLocation('File Libraries');
|
||||
@@ -403,8 +401,7 @@ describe('Copy content', () => {
|
||||
expect(await dataTable.isItemPresent(`${existingFile}-1.txt`)).toBe(true, `${existingFile}-1.txt not present in destination folder`);
|
||||
});
|
||||
|
||||
// TODO disabled until ACA-2171 is fixed
|
||||
xit('Copy items into a library - [C291900]', async () => {
|
||||
it('Copy items into a library - [C291900]', async () => {
|
||||
await dataTable.selectItem(file1, source);
|
||||
await toolbar.clickMoreActionsCopy();
|
||||
await copyDialog.selectLocation('File Libraries');
|
||||
@@ -529,8 +526,7 @@ describe('Copy content', () => {
|
||||
expect(await dataTable.isItemPresent(file3InFolder)).toBe(true, `${file3InFolder} not present in destination folder`);
|
||||
});
|
||||
|
||||
// TODO disabled until ACA-2171 is fixed
|
||||
xit('Copy items into a library - [C291901]', async () => {
|
||||
it('Copy items into a library - [C291901]', async () => {
|
||||
await dataTable.selectMultipleItems([file1, folder1], source);
|
||||
await toolbar.clickMoreActionsCopy();
|
||||
await copyDialog.selectLocation('File Libraries');
|
||||
|
@@ -250,8 +250,7 @@ describe('Move content', () => {
|
||||
expect(await dataTable.isItemPresent(file3InFolder)).toBe(true, `${file3InFolder} not present in destination folder`);
|
||||
});
|
||||
|
||||
// TODO disabled until ACA-2171 is fixed
|
||||
xit('Move items into a library - [C291969]', async () => {
|
||||
it('Move items into a library - [C291969]', async () => {
|
||||
await dataTable.selectMultipleItems([file4, folder2]);
|
||||
await toolbar.clickMoreActionsMove();
|
||||
await moveDialog.selectLocation('File Libraries');
|
||||
@@ -371,8 +370,7 @@ describe('Move content', () => {
|
||||
expect(await dataTable.isItemPresent(`${existingFile}-1.txt`)).toBe(false, `${existingFile}-1.txt is present in destination folder`);
|
||||
});
|
||||
|
||||
// TODO disabled until ACA-2171 is fixed
|
||||
xit('Move items into a library - [C291971]', async () => {
|
||||
it('Move items into a library - [C291971]', async () => {
|
||||
await dataTable.selectItem(file4, sourceRF);
|
||||
await toolbar.clickMoreActionsMove();
|
||||
await moveDialog.selectLocation('File Libraries');
|
||||
@@ -494,8 +492,7 @@ describe('Move content', () => {
|
||||
expect(await dataTable.isItemPresent(`${existingFile}-1.txt`)).toBe(false, `${existingFile}-1.txt not present in destination folder`);
|
||||
});
|
||||
|
||||
// TODO disabled until ACA-2171 is fixed
|
||||
xit('Move items into a library - [C291978]', async () => {
|
||||
it('Move items into a library - [C291978]', async () => {
|
||||
await dataTable.selectItem(file4, sourceSF);
|
||||
await toolbar.clickMoreActionsMove();
|
||||
await moveDialog.selectLocation('File Libraries');
|
||||
@@ -685,8 +682,7 @@ describe('Move content', () => {
|
||||
expect(await dataTable.isItemPresent(file3InFolder)).toBe(true, `${file3InFolder} not present in destination folder`);
|
||||
});
|
||||
|
||||
// TODO disabled until ACA-2171 is fixed
|
||||
xit('Move items into a library - [C291979]', async () => {
|
||||
it('Move items into a library - [C291979]', async () => {
|
||||
await dataTable.selectMultipleItems([file4, folder2], sourceFav);
|
||||
await toolbar.clickMoreActionsMove();
|
||||
await moveDialog.selectLocation('File Libraries');
|
||||
|
Reference in New Issue
Block a user