summaryrefslogtreecommitdiff
path: root/spec/frontend/ci_lint/graphql/__snapshots__/resolvers_spec.js.snap
diff options
context:
space:
mode:
Diffstat (limited to 'spec/frontend/ci_lint/graphql/__snapshots__/resolvers_spec.js.snap')
-rw-r--r--spec/frontend/ci_lint/graphql/__snapshots__/resolvers_spec.js.snap73
1 files changed, 0 insertions, 73 deletions
diff --git a/spec/frontend/ci_lint/graphql/__snapshots__/resolvers_spec.js.snap b/spec/frontend/ci_lint/graphql/__snapshots__/resolvers_spec.js.snap
deleted file mode 100644
index 87bec82e350..00000000000
--- a/spec/frontend/ci_lint/graphql/__snapshots__/resolvers_spec.js.snap
+++ /dev/null
@@ -1,73 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`~/ci_lint/graphql/resolvers Mutation lintCI resolves lint data with type names 1`] = `
-Object {
- "__typename": "CiLintContent",
- "errors": Array [],
- "jobs": Array [
- Object {
- "__typename": "CiLintJob",
- "afterScript": Array [
- "echo 'after script 1",
- ],
- "allowFailure": false,
- "beforeScript": Array [
- "echo 'before script 1'",
- ],
- "environment": "prd",
- "except": Object {
- "refs": Array [
- "master@gitlab-org/gitlab",
- "/^release/.*$/@gitlab-org/gitlab",
- ],
- },
- "name": "job_1",
- "only": null,
- "script": Array [
- "echo 'script 1'",
- ],
- "stage": "test",
- "tagList": Array [
- "tag 1",
- ],
- "when": "on_success",
- },
- Object {
- "__typename": "CiLintJob",
- "afterScript": Array [
- "echo 'after script 2",
- ],
- "allowFailure": true,
- "beforeScript": Array [
- "echo 'before script 2'",
- ],
- "environment": "stg",
- "except": Object {
- "refs": Array [
- "master@gitlab-org/gitlab",
- "/^release/.*$/@gitlab-org/gitlab",
- ],
- },
- "name": "job_2",
- "only": Object {
- "__typename": "CiLintJobOnlyPolicy",
- "refs": Array [
- "web",
- "chat",
- "pushes",
- ],
- },
- "script": Array [
- "echo 'script 2'",
- ],
- "stage": "test",
- "tagList": Array [
- "tag 2",
- ],
- "when": "on_success",
- },
- ],
- "valid": true,
- "warnings": Array [],
-}
-`;