summaryrefslogtreecommitdiff
path: root/spec/frontend/ci/reports/mock_data/mock_data.js
diff options
context:
space:
mode:
Diffstat (limited to 'spec/frontend/ci/reports/mock_data/mock_data.js')
-rw-r--r--spec/frontend/ci/reports/mock_data/mock_data.js38
1 files changed, 38 insertions, 0 deletions
diff --git a/spec/frontend/ci/reports/mock_data/mock_data.js b/spec/frontend/ci/reports/mock_data/mock_data.js
new file mode 100644
index 00000000000..2599b0ac365
--- /dev/null
+++ b/spec/frontend/ci/reports/mock_data/mock_data.js
@@ -0,0 +1,38 @@
+export const failedIssue = {
+ result: 'failure',
+ name: 'Test#sum when a is 1 and b is 2 returns summary',
+ execution_time: 0.009411,
+ status: 'failed',
+ system_output:
+ "Failure/Error: is_expected.to eq(3)\n\n expected: 3\n got: -1\n\n (compared using ==)\n./spec/test_spec.rb:12:in `block (4 levels) in \u003ctop (required)\u003e'",
+ recent_failures: {
+ count: 3,
+ base_branch: 'main',
+ },
+};
+
+export const successIssue = {
+ result: 'success',
+ name: 'Test#sum when a is 1 and b is 2 returns summary',
+ execution_time: 0.009411,
+ status: 'success',
+ system_output: null,
+ recent_failures: null,
+};
+
+export const failedReport = {
+ summary: { total: 11, resolved: 0, errored: 2, failed: 0 },
+ suites: [
+ {
+ name: 'rspec:pg',
+ status: 'error',
+ summary: { total: 0, resolved: 0, errored: 0, failed: 0 },
+ new_failures: [],
+ resolved_failures: [],
+ existing_failures: [],
+ new_errors: [],
+ resolved_errors: [],
+ existing_errors: [],
+ },
+ ],
+};