Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-12-13 02:00:21 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-12-13 02:00:21 +0300
commita300086c5935fd69444018638b29d85b3e572c96 (patch)
tree6fbbe243ec6ad4536085b7a3cd9857dd8b02b451 /spec/frontend
parent544a05f8dd310d672417687d458e1b99c2b19760 (diff)
Add latest changes from gitlab-org/security/gitlab@16-5-stable-ee
Diffstat (limited to 'spec/frontend')
-rw-r--r--spec/frontend/repository/components/table/row_spec.js11
1 files changed, 6 insertions, 5 deletions
diff --git a/spec/frontend/repository/components/table/row_spec.js b/spec/frontend/repository/components/table/row_spec.js
index 80471d8734b..9bff801dbf0 100644
--- a/spec/frontend/repository/components/table/row_spec.js
+++ b/spec/frontend/repository/components/table/row_spec.js
@@ -146,10 +146,11 @@ describe('Repository table row component', () => {
});
it.each`
- path
- ${'test#'}
- ${'Ă„nderungen'}
- `('renders link for $path', ({ path }) => {
+ path | encodedPath
+ ${'test#'} | ${'test%23'}
+ ${'Ă„nderungen'} | ${'%C3%84nderungen'}
+ ${'dir%2f_hello__.sh'} | ${'dir%252f_hello__.sh'}
+ `('renders link for $path', ({ path, encodedPath }) => {
factory({
propsData: {
id: '1',
@@ -161,7 +162,7 @@ describe('Repository table row component', () => {
});
expect(wrapper.findComponent({ ref: 'link' }).props('to')).toBe(
- `/-/tree/main/${encodeURIComponent(path)}?ref_type=heads`,
+ `/-/tree/main/${encodedPath}?ref_type=heads`,
);
});