Commit f56fc91f authored by Mark Florian's avatar Mark Florian

Merge branch '4484-fix-missing-translation' into 'master'

Add missing security report translation

See merge request gitlab-org/gitlab!47891
parents c2c7b750 9e903777
......@@ -110,6 +110,7 @@ export default {
},
},
i18n: {
API_FUZZING: __('API Fuzzing'),
CONTAINER_SCANNING: __('Container Scanning'),
COVERAGE_FUZZING: __('Coverage Fuzzing'),
SECRET_DETECTION: __('Secret Detection'),
......
......@@ -152,7 +152,10 @@ describe('Vulnerabilities app component', () => {
});
it('should pass the security scanners to the vulnerability list', () => {
const securityScanners = { enabled: ['SAST', 'DAST'], pipelineRun: ['SAST', 'DAST'] };
const securityScanners = {
enabled: ['SAST', 'DAST', 'API_FUZZING', 'COVERAGE_FUZZING'],
pipelineRun: ['SAST', 'DAST', 'API_FUZZING', 'COVERAGE_FUZZING'],
};
wrapper.setData({ securityScanners });
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment