Skip to content
Snippets Groups Projects
Unverified Commit 4eb11d11 authored by Sergei Zharinov's avatar Sergei Zharinov Committed by GitHub
Browse files

fix: Sanitize utils coverage (#22995)

parent 89c96918
No related branches found
No related tags found
No related merge requests found
...@@ -194,5 +194,5 @@ export function getAll(): HostRule[] { ...@@ -194,5 +194,5 @@ export function getAll(): HostRule[] {
export function clear(): void { export function clear(): void {
logger.debug('Clearing hostRules'); logger.debug('Clearing hostRules');
hostRules = []; hostRules = [];
sanitize.clearSanitizedSecretsList(); sanitize.clearRepoSanitizedSecretsList();
} }
import { import {
addSecretForSanitizing, addSecretForSanitizing,
clearSanitizedSecretsList, clearGlobalSanitizedSecretsList,
clearRepoSanitizedSecretsList,
sanitize, sanitize,
} from './sanitize'; } from './sanitize';
import { toBase64 } from './string'; import { toBase64 } from './string';
describe('util/sanitize', () => { describe('util/sanitize', () => {
beforeEach(() => { beforeEach(() => {
clearSanitizedSecretsList(); clearRepoSanitizedSecretsList();
clearGlobalSanitizedSecretsList();
}); });
it('sanitizes empty string', () => { it('sanitizes empty string', () => {
......
...@@ -58,7 +58,10 @@ export function addSecretForSanitizing( ...@@ -58,7 +58,10 @@ export function addSecretForSanitizing(
} }
} }
export function clearSanitizedSecretsList(type = 'repo'): void { export function clearRepoSanitizedSecretsList(): void {
const secrets = type === 'repo' ? repoSecrets : globalSecrets; repoSecrets.clear();
secrets.clear(); }
export function clearGlobalSanitizedSecretsList(): void {
globalSecrets.clear();
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment