fix tests

This commit is contained in:
Denys Vuika
2018-08-31 15:37:09 +01:00
parent 7d5fce8e6c
commit 08917e862c
2 changed files with 2 additions and 2 deletions

View File

@@ -281,7 +281,7 @@ describe('Create folder', () => {
.then(() => menu))
.then(menu => {
const tooltip = menu.getItemTooltip('Create folder');
expect(tooltip).toContain(`Folders cannot be created whilst viewing the current items.`);
expect(tooltip).toContain(`Folders cannot be created whilst viewing the current items`);
});
});
});

View File

@@ -65,7 +65,7 @@ describe('Empty list views', () => {
.then(() => {
expect(dataTable.isEmptyList()).toBe(true, 'list is not empty');
expect(dataTable.getEmptyStateTitle()).toContain(`You aren't a member of any File Libraries yet`);
expect(dataTable.getEmptyStateSubtitle()).toContain('Join sites to upload, view, and share files.');
expect(dataTable.getEmptyStateSubtitle()).toContain('Join libraries to upload, view, and share files.');
});
});