Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
77336b01
Commit
77336b01
authored
Jun 01, 2021
by
Dave Pisek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add specs for "code" component
parent
fadd6e5e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
38 additions
and
0 deletions
+38
-0
ee/spec/frontend/vulnerabilities/generic_report/types/code_spec.js
...rontend/vulnerabilities/generic_report/types/code_spec.js
+38
-0
No files found.
ee/spec/frontend/vulnerabilities/generic_report/types/code_spec.js
0 → 100644
View file @
77336b01
import
{
GlLink
}
from
'
@gitlab/ui
'
;
import
{
shallowMount
}
from
'
@vue/test-utils
'
;
import
Code
from
'
ee/vulnerabilities/components/generic_report/types/code.vue
'
;
import
CodeBlock
from
'
~/vue_shared/components/code_block.vue
'
;
const
TEST_DATA
=
{
value
:
'
<h1>Foo</h1>
'
,
};
describe
(
'
ee/vulnerabilities/components/generic_report/types/code.vue
'
,
()
=>
{
let
wrapper
;
const
createWrapper
=
()
=>
{
return
shallowMount
(
Code
,
{
propsData
:
{
...
TEST_DATA
,
},
});
};
const
findCodeBlock
=
()
=>
wrapper
.
findComponent
(
CodeBlock
);
beforeEach
(()
=>
{
wrapper
=
createWrapper
();
});
afterEach
(()
=>
{
wrapper
.
destroy
();
});
it
(
'
renders a code-block
'
,
()
=>
{
expect
(
findCodeBlock
().
exists
()).
toBe
(
true
);
});
it
(
'
passes the given value to the code-block component
'
,
()
=>
{
expect
(
findCodeBlock
().
props
(
'
code
'
)).
toBe
(
TEST_DATA
.
value
);
});
});
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment