debian-mirror-gitlab/spec/frontend/monitoring/components/__snapshots__/empty_state_spec.js.snap

50 lines
1.4 KiB
Text
Raw Normal View History

2019-09-30 21:07:59 +05:30
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`EmptyState shows gettingStarted state 1`] = `
2020-07-28 23:09:34 +05:30
<div>
<!---->
<gl-empty-state-stub
description="Stay updated about the performance and health of your environment by configuring Prometheus to monitor your deployments."
primarybuttonlink="/clustersPath"
primarybuttontext="Install on clusters"
secondarybuttonlink="/settingsPath"
secondarybuttontext="Configure existing installation"
svgpath="/path/to/getting-started.svg"
title="Get started with performance monitoring"
/>
</div>
2019-09-30 21:07:59 +05:30
`;
2020-07-28 23:09:34 +05:30
exports[`EmptyState shows noData state 1`] = `
<div>
<!---->
<gl-empty-state-stub
description="You are connected to the Prometheus server, but there is currently no data to display."
primarybuttonlink="/settingsPath"
primarybuttontext="Configure Prometheus"
secondarybuttonlink=""
secondarybuttontext=""
svgpath="/path/to/no-data.svg"
title="No data found"
/>
</div>
2019-09-30 21:07:59 +05:30
`;
exports[`EmptyState shows unableToConnect state 1`] = `
2020-07-28 23:09:34 +05:30
<div>
<!---->
<gl-empty-state-stub
description="Ensure connectivity is available from the GitLab server to the Prometheus server"
primarybuttonlink="/documentationPath"
primarybuttontext="View documentation"
secondarybuttonlink="/settingsPath"
secondarybuttontext="Configure Prometheus"
svgpath="/path/to/unable-to-connect.svg"
title="Unable to connect to Prometheus server"
/>
</div>
2019-09-30 21:07:59 +05:30
`;