mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-07-31 17:38:28 +00:00
update ADF libs (#395)
* update ADF libs * upgrade tests * fix tests * remove fdescribe
This commit is contained in:
committed by
Cilibiu Bogdan
parent
e34e9ee726
commit
3c01aa7f55
@@ -151,7 +151,7 @@ describe('Libraries Routed Component', () => {
|
||||
it('sets title with id when duplicate nodes title exists in list', () => {
|
||||
node.title = 'title';
|
||||
|
||||
const data = new ShareDataTableAdapter(null);
|
||||
const data = new ShareDataTableAdapter(null, null);
|
||||
data.setRows([<any>{ node: { entry: { id: 'some-id', title: 'title' } } }]);
|
||||
|
||||
component.documentList.data = data;
|
||||
@@ -163,7 +163,7 @@ describe('Libraries Routed Component', () => {
|
||||
it('sets title when no duplicate nodes title exists in list', () => {
|
||||
node.title = 'title';
|
||||
|
||||
const data = new ShareDataTableAdapter(null);
|
||||
const data = new ShareDataTableAdapter(null, null);
|
||||
data.setRows([<any>{ node: { entry: { id: 'some-id', title: 'title-some-id' } } }]);
|
||||
|
||||
component.documentList.data = data;
|
||||
|
Reference in New Issue
Block a user