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
path: root/spec
diff options
context:
space:
mode:
authorClement Ho <clemmakesapps@gmail.com>2018-07-20 22:20:01 +0300
committerClement Ho <clemmakesapps@gmail.com>2018-07-20 22:20:01 +0300
commit3873617548c03359e4fb9e093d181a7d61f642c4 (patch)
tree921ef71b939406ddad63feee671fd37d77274a56 /spec
parentced005f330419ec81657e852c5cb9124fdb29fbb (diff)
parent0deb8547af52ea1ccb147a07629705ec5e435bfb (diff)
Merge branch '47530-replace-label-light-with-label-bold' into 'master'
Resolve "Replace all usages of `label-light` with `label-bold`" Closes #47530 and #41725 See merge request gitlab-org/gitlab-ce!20727
Diffstat (limited to 'spec')
-rw-r--r--spec/javascripts/ide/components/new_dropdown/modal_spec.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/javascripts/ide/components/new_dropdown/modal_spec.js b/spec/javascripts/ide/components/new_dropdown/modal_spec.js
index 6dcc5880677..70651535e87 100644
--- a/spec/javascripts/ide/components/new_dropdown/modal_spec.js
+++ b/spec/javascripts/ide/components/new_dropdown/modal_spec.js
@@ -38,7 +38,7 @@ describe('new file modal component', () => {
});
it(`sets form label as ${type}`, () => {
- expect(vm.$el.querySelector('.label-light').textContent.trim()).toBe('Name');
+ expect(vm.$el.querySelector('.label-bold').textContent.trim()).toBe('Name');
});
describe('createEntryInStore', () => {