Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/frontend/monitoring/components/__snapshots__/group_empty_state_spec.js.snap')
-rw-r--r--spec/frontend/monitoring/components/__snapshots__/group_empty_state_spec.js.snap160
1 files changed, 0 insertions, 160 deletions
diff --git a/spec/frontend/monitoring/components/__snapshots__/group_empty_state_spec.js.snap b/spec/frontend/monitoring/components/__snapshots__/group_empty_state_spec.js.snap
deleted file mode 100644
index 42a16a39dfd..00000000000
--- a/spec/frontend/monitoring/components/__snapshots__/group_empty_state_spec.js.snap
+++ /dev/null
@@ -1,160 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`GroupEmptyState given state BAD_QUERY passes the expected props to GlEmptyState 1`] = `
-Object {
- "compact": true,
- "contentClass": Array [],
- "description": null,
- "invertInDarkMode": true,
- "primaryButtonLink": "/path/to/settings",
- "primaryButtonText": "Verify configuration",
- "secondaryButtonLink": null,
- "secondaryButtonText": null,
- "svgHeight": null,
- "svgPath": "/path/to/empty-group-illustration.svg",
- "title": "Query cannot be processed",
-}
-`;
-
-exports[`GroupEmptyState given state BAD_QUERY renders the slotted content 1`] = `
-<div>
- <div>
- The Prometheus server responded with "bad request". Please check your queries are correct and are supported in your Prometheus version.
- <a
- href="/path/to/docs"
- >
- More information
- </a>
- </div>
-</div>
-`;
-
-exports[`GroupEmptyState given state CONNECTION_FAILED passes the expected props to GlEmptyState 1`] = `
-Object {
- "compact": true,
- "contentClass": Array [],
- "description": "We couldn't reach the Prometheus server. Either the server no longer exists or the configuration details need updating.",
- "invertInDarkMode": true,
- "primaryButtonLink": "/path/to/settings",
- "primaryButtonText": "Verify configuration",
- "secondaryButtonLink": null,
- "secondaryButtonText": null,
- "svgHeight": null,
- "svgPath": "/path/to/empty-group-illustration.svg",
- "title": "Connection failed",
-}
-`;
-
-exports[`GroupEmptyState given state CONNECTION_FAILED renders the slotted content 1`] = `<div />`;
-
-exports[`GroupEmptyState given state FOO STATE passes the expected props to GlEmptyState 1`] = `
-Object {
- "compact": true,
- "contentClass": Array [],
- "description": "An error occurred while loading the data. Please try again.",
- "invertInDarkMode": true,
- "primaryButtonLink": null,
- "primaryButtonText": null,
- "secondaryButtonLink": null,
- "secondaryButtonText": null,
- "svgHeight": null,
- "svgPath": "/path/to/empty-group-illustration.svg",
- "title": "An error has occurred",
-}
-`;
-
-exports[`GroupEmptyState given state FOO STATE renders the slotted content 1`] = `<div />`;
-
-exports[`GroupEmptyState given state LOADING passes the expected props to GlEmptyState 1`] = `
-Object {
- "compact": true,
- "contentClass": Array [],
- "description": "Creating graphs uses the data from the Prometheus server. If this takes a long time, ensure that data is available.",
- "invertInDarkMode": true,
- "primaryButtonLink": null,
- "primaryButtonText": null,
- "secondaryButtonLink": null,
- "secondaryButtonText": null,
- "svgHeight": null,
- "svgPath": "/path/to/empty-group-illustration.svg",
- "title": "Waiting for performance data",
-}
-`;
-
-exports[`GroupEmptyState given state LOADING renders the slotted content 1`] = `<div />`;
-
-exports[`GroupEmptyState given state NO_DATA passes the expected props to GlEmptyState 1`] = `
-Object {
- "compact": true,
- "contentClass": Array [],
- "description": null,
- "invertInDarkMode": true,
- "primaryButtonLink": null,
- "primaryButtonText": null,
- "secondaryButtonLink": null,
- "secondaryButtonText": null,
- "svgHeight": null,
- "svgPath": "/path/to/empty-group-illustration.svg",
- "title": "No data to display",
-}
-`;
-
-exports[`GroupEmptyState given state NO_DATA renders the slotted content 1`] = `
-<div>
- <div>
- The data source is connected, but there is no data to display.
- <a
- href="/path/to/docs"
- >
- More information
- </a>
- </div>
-</div>
-`;
-
-exports[`GroupEmptyState given state TIMEOUT passes the expected props to GlEmptyState 1`] = `
-Object {
- "compact": true,
- "contentClass": Array [],
- "description": null,
- "invertInDarkMode": true,
- "primaryButtonLink": null,
- "primaryButtonText": null,
- "secondaryButtonLink": null,
- "secondaryButtonText": null,
- "svgHeight": null,
- "svgPath": "/path/to/empty-group-illustration.svg",
- "title": "Connection timed out",
-}
-`;
-
-exports[`GroupEmptyState given state TIMEOUT renders the slotted content 1`] = `
-<div>
- <div>
- Charts can't be displayed as the request for data has timed out.
- <a
- href="/path/to/docs"
- >
- More information
- </a>
- </div>
-</div>
-`;
-
-exports[`GroupEmptyState given state UNKNOWN_ERROR passes the expected props to GlEmptyState 1`] = `
-Object {
- "compact": true,
- "contentClass": Array [],
- "description": "An error occurred while loading the data. Please try again.",
- "invertInDarkMode": true,
- "primaryButtonLink": null,
- "primaryButtonText": null,
- "secondaryButtonLink": null,
- "secondaryButtonText": null,
- "svgHeight": null,
- "svgPath": "/path/to/empty-group-illustration.svg",
- "title": "An error has occurred",
-}
-`;
-
-exports[`GroupEmptyState given state UNKNOWN_ERROR renders the slotted content 1`] = `<div />`;