Commits
Tim Donohue authored and GitHub committed d1876a87d39 Merge
19 19 | let scheduler: TestScheduler; |
20 20 | let service: SubmissionRestService; |
21 21 | let requestService: RequestService; |
22 22 | let rdbService: RemoteDataBuildService; |
23 23 | let halService: any; |
24 24 | |
25 25 | const resourceEndpointURL = 'https://rest.api/endpoint'; |
26 26 | const resourceEndpoint = 'workspaceitems'; |
27 27 | const resourceScope = '260'; |
28 28 | const body = { test: new FormFieldMetadataValueObject('test') }; |
29 - | const resourceHref = resourceEndpointURL + '/' + resourceEndpoint + '/' + resourceScope + '?projection=full'; |
29 + | const resourceHref = resourceEndpointURL + '/' + resourceEndpoint + '/' + resourceScope + '?embed=sections,collection'; |
30 30 | const timestampResponse = 1545994811992; |
31 31 | |
32 32 | function initTestService() { |
33 33 | return new SubmissionRestService( |
34 34 | rdbService, |
35 35 | requestService, |
36 36 | halService, |
37 37 | ); |
38 38 | } |
39 39 | |