diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2020-05-08 09:09:39 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2020-05-08 09:09:39 +0000 |
commit | 5bdbc604c8a08f827c3833e2c28ec0c299bb41fc (patch) | |
tree | 1fbf5e5dc3bff54d371baa15775371ebc8525f62 /spec/frontend/notebook/cells/prompt_spec.js | |
parent | 79ddf163588de2d9a7f1cc27262dc1a14503f619 (diff) | |
download | gitlab-ce-5bdbc604c8a08f827c3833e2c28ec0c299bb41fc.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/frontend/notebook/cells/prompt_spec.js')
-rw-r--r-- | spec/frontend/notebook/cells/prompt_spec.js | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/spec/frontend/notebook/cells/prompt_spec.js b/spec/frontend/notebook/cells/prompt_spec.js new file mode 100644 index 00000000000..cf5a7a603c6 --- /dev/null +++ b/spec/frontend/notebook/cells/prompt_spec.js @@ -0,0 +1,56 @@ +import Vue from 'vue'; +import PromptComponent from '~/notebook/cells/prompt.vue'; + +const Component = Vue.extend(PromptComponent); + +describe('Prompt component', () => { + let vm; + + describe('input', () => { + beforeEach(done => { + vm = new Component({ + propsData: { + type: 'In', + count: 1, + }, + }); + vm.$mount(); + + setImmediate(() => { + done(); + }); + }); + + it('renders in label', () => { + expect(vm.$el.textContent.trim()).toContain('In'); + }); + + it('renders count', () => { + expect(vm.$el.textContent.trim()).toContain('1'); + }); + }); + + describe('output', () => { + beforeEach(done => { + vm = new Component({ + propsData: { + type: 'Out', + count: 1, + }, + }); + vm.$mount(); + + setImmediate(() => { + done(); + }); + }); + + it('renders in label', () => { + expect(vm.$el.textContent.trim()).toContain('Out'); + }); + + it('renders count', () => { + expect(vm.$el.textContent.trim()).toContain('1'); + }); + }); +}); |