summaryrefslogtreecommitdiff
path: root/spec/frontend/repository/components/directory_download_links_spec.js
diff options
context:
space:
mode:
Diffstat (limited to 'spec/frontend/repository/components/directory_download_links_spec.js')
-rw-r--r--spec/frontend/repository/components/directory_download_links_spec.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/spec/frontend/repository/components/directory_download_links_spec.js b/spec/frontend/repository/components/directory_download_links_spec.js
index 4d70b44de08..72c4165c2e9 100644
--- a/spec/frontend/repository/components/directory_download_links_spec.js
+++ b/spec/frontend/repository/components/directory_download_links_spec.js
@@ -7,7 +7,10 @@ function factory(currentPath) {
vm = shallowMount(DirectoryDownloadLinks, {
propsData: {
currentPath,
- links: [{ text: 'zip', path: 'http://test.com/' }, { text: 'tar', path: 'http://test.com/' }],
+ links: [
+ { text: 'zip', path: 'http://test.com/' },
+ { text: 'tar', path: 'http://test.com/' },
+ ],
},
});
}