update excluded

This commit is contained in:
Eugenio Romano
2020-11-30 12:08:32 +00:00
parent 5e0559bce7
commit e55c2555c1
2 changed files with 11 additions and 2 deletions

View File

@@ -423,10 +423,18 @@ describe('Content Services Viewer', () => {
});
describe('Viewer - version update with unsupported file', () => {
it('[C587084] Should display the preview for an unsupported file', async () => {
it('[C587084] Should display unknown format the preview for an unsupported file', async () => {
await changeFileNameInViewer(unsupportedFile.name, 'generic-unsupported-file-1st.3DS');
await uploadNewVersion(jpgFile.name, unsupportedFileByLocation.location);
await previewUnsupportedFile(unsupportedFileByLocation.name);
await changeFileNameInViewer(unsupportedFileByLocation.name, 'generic-unsupported-file-2nd.3DS');
await uploadNewVersion(pdfFile.name, unsupportedFileByLocation.location);
await previewUnsupportedFile(unsupportedFileByLocation.name);
await changeFileNameInViewer(unsupportedFileByLocation.name, 'generic-unsupported-file-3rd.3DS');
await uploadNewVersion(mp4File.name, unsupportedFileByLocation.location);
await previewUnsupportedFile(unsupportedFileByLocation.name);
});
});