mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-08 10:34:15 +00:00
ESLint: fix dangling commas
This commit is contained in:
@@ -11,7 +11,7 @@ describe('WorkflowItemPageResolver', () => {
|
||||
|
||||
beforeEach(() => {
|
||||
wfiService = {
|
||||
findById: (id: string) => createSuccessfulRemoteDataObject$({ id })
|
||||
findById: (id: string) => createSuccessfulRemoteDataObject$({ id }),
|
||||
} as any;
|
||||
resolver = new WorkflowItemPageResolver(wfiService);
|
||||
});
|
||||
@@ -23,7 +23,7 @@ describe('WorkflowItemPageResolver', () => {
|
||||
(resolved) => {
|
||||
expect(resolved.payload.id).toEqual(uuid);
|
||||
done();
|
||||
}
|
||||
},
|
||||
);
|
||||
});
|
||||
});
|
||||
|
Reference in New Issue
Block a user