diff options
Diffstat (limited to 'spec/frontend/jira_connect')
-rw-r--r-- | spec/frontend/jira_connect/branches/components/new_branch_form_spec.js | 2 | ||||
-rw-r--r-- | spec/frontend/jira_connect/subscriptions/pkce_spec.js | 4 |
2 files changed, 1 insertions, 5 deletions
diff --git a/spec/frontend/jira_connect/branches/components/new_branch_form_spec.js b/spec/frontend/jira_connect/branches/components/new_branch_form_spec.js index cc8346253ee..d41031f9eaa 100644 --- a/spec/frontend/jira_connect/branches/components/new_branch_form_spec.js +++ b/spec/frontend/jira_connect/branches/components/new_branch_form_spec.js @@ -238,7 +238,7 @@ describe('NewBranchForm', () => { scenario | mutation | alertTitle | alertText ${'with errors-as-data'} | ${mockCreateBranchMutationWithErrors} | ${CREATE_BRANCH_ERROR_WITH_CONTEXT} | ${mockCreateBranchMutationResponseWithErrors.data.createBranch.errors[0]} ${'top-level error'} | ${mockCreateBranchMutationFailed} | ${''} | ${CREATE_BRANCH_ERROR_GENERIC} - `('', ({ mutation, alertTitle, alertText }) => { + `('given $scenario', ({ mutation, alertTitle, alertText }) => { beforeEach(async () => { createComponent({ mockApollo: createMockApolloProvider({ diff --git a/spec/frontend/jira_connect/subscriptions/pkce_spec.js b/spec/frontend/jira_connect/subscriptions/pkce_spec.js index 4ee88059b7a..671922c36d8 100644 --- a/spec/frontend/jira_connect/subscriptions/pkce_spec.js +++ b/spec/frontend/jira_connect/subscriptions/pkce_spec.js @@ -1,11 +1,7 @@ import crypto from 'crypto'; -import { TextEncoder, TextDecoder } from 'util'; import { createCodeVerifier, createCodeChallenge } from '~/jira_connect/subscriptions/pkce'; -global.TextEncoder = TextEncoder; -global.TextDecoder = TextDecoder; - describe('pkce', () => { beforeAll(() => { Object.defineProperty(global.self, 'crypto', { |