Skip to content
Snippets Groups Projects
Commit 232a3e98 authored by Jorrit Schaap's avatar Jorrit Schaap
Browse files

Merge branch 'master' of git.astron.nl:ro/lofar

parents ba7962c8 b881ec5c
No related branches found
No related tags found
Loading
...@@ -147,11 +147,11 @@ const QaReportingTemplate = { ...@@ -147,11 +147,11 @@ const QaReportingTemplate = {
</tbody> </tbody>
</table> </table>
<br/> <br/>
<strong>Performance of the system:</strong> <p><strong>Performance of the system:</strong><br><br></p>
<strong>Data recording:</strong> <p><strong>Data recording:</strong><br><br></p>
${missingStationsContent?missingStationsContent:""} ${missingStationsContent?missingStationsContent:""}
<strong>Data processing:</strong> <p><strong>Data processing:</strong><br><br></p>
<strong>Archiving:</strong> <p><strong>Archiving:</strong><br><br></p>
<strong style='display:inline'>Remarks:</strong><p style= "display:inline; position: relative"> Please analyse the validation plots at <strong style='display:inline'>Remarks:</strong><p style= "display:inline; position: relative"> Please analyse the validation plots at
<a href="https://proxy.lofar.eu/inspect/HTML/">https://proxy.lofar.eu/inspect/HTML/</a> within 24 hours after this notification and submit your <a href="https://proxy.lofar.eu/inspect/HTML/">https://proxy.lofar.eu/inspect/HTML/</a> within 24 hours after this notification and submit your
findings using the form at <a href="/schedulingunit/${id}/workflow">${window.location.origin}/schedulingunit/${id}/workflow </a>. findings using the form at <a href="/schedulingunit/${id}/workflow">${window.location.origin}/schedulingunit/${id}/workflow </a>.
......
...@@ -97,7 +97,10 @@ describe('Project Report Render With Contents', () => { ...@@ -97,7 +97,10 @@ describe('Project Report Render With Contents', () => {
await waitFor(() => { await waitFor(() => {
expect(component.container.querySelector('.p-autocomplete-loader')).toBeNull(); expect(component.container.querySelector('.p-autocomplete-loader')).toBeNull();
}, { timeout: 5000 }); }, { timeout: 5000 });
await waitFor(() => {
const anchorElement = component.container.querySelector(".report-calendar");
expect(anchorElement).toBeInTheDocument();
});
const componentSnapshotAfterCsv = component.asFragment(); const componentSnapshotAfterCsv = component.asFragment();
expect(componentSnapshotAfterCsv).toMatchSnapshot("After CSV Generation"); expect(componentSnapshotAfterCsv).toMatchSnapshot("After CSV Generation");
await waitFor(() => { await waitFor(() => {
...@@ -107,10 +110,10 @@ describe('Project Report Render With Contents', () => { ...@@ -107,10 +110,10 @@ describe('Project Report Render With Contents', () => {
cinstance.clearAll(); cinstance.clearAll();
await waitFor(() => { await waitFor(() => {
expect(component.container.querySelector('.p-autocomplete-loader')).toBeNull(); expect(component.container.querySelector('.p-icon-spin')).toBeNull();
}, { timeout: 5000 }); }, { timeout: 5000 });
const componentSnapshotAfterClear = component.asFragment(); const componentSnapshotAfterClear = component.asFragment();
expect(componentSnapshotAfterClear).toMatchSnapshot("After Clear ALl"); expect(componentSnapshotAfterClear).toMatchSnapshot("After Clear ALl");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment