Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
heptapod
heptapod
Commits
d9a5f400b73e
Commit
9636da30
authored
Aug 02, 2017
by
kushalpandya
Browse files
Use `$mount` for component rendering, remove tests for `props` datatype as unnecessary
parent
32809421635c
Changes
1
Hide whitespace changes
Inline
Side-by-side
spec/javascripts/groups/group_identicon_spec.js
View file @
d9a5f400
...
...
@@ -9,40 +9,18 @@ const createComponent = () => {
const
group
=
store
.
decorateGroup
(
group1
);
return
new
Component
({
el
:
document
.
createElement
(
'
div
'
),
propsData
:
{
entityId
:
group
.
id
,
entityName
:
group
.
name
,
},
});
})
.
$mount
()
;
};
describe
(
'
GroupIdenticonComponent
'
,
()
=>
{
let
vm
;
let
el
;
beforeEach
(()
=>
{
vm
=
createComponent
();
el
=
vm
.
$el
;
});
describe
(
'
props
'
,
()
=>
{
it
(
'
should have props with defined data types
'
,
(
done
)
=>
{
const
identiconProps
=
groupIdenticonComponent
.
props
;
const
EntityIdTypeClass
=
identiconProps
.
entityId
.
type
;
const
EntityNameTypeClass
=
identiconProps
.
entityName
.
type
;
Vue
.
nextTick
(()
=>
{
expect
(
identiconProps
.
entityId
).
toBeDefined
();
expect
(
new
EntityIdTypeClass
()
instanceof
Number
).
toBeTruthy
();
expect
(
identiconProps
.
entityId
.
required
).
toBeTruthy
();
expect
(
identiconProps
.
entityName
).
toBeDefined
();
expect
(
new
EntityNameTypeClass
()
instanceof
String
).
toBeTruthy
();
expect
(
identiconProps
.
entityName
.
required
).
toBeTruthy
();
done
();
});
});
});
describe
(
'
computed
'
,
()
=>
{
...
...
@@ -74,9 +52,9 @@ describe('GroupIdenticonComponent', () => {
describe
(
'
template
'
,
()
=>
{
it
(
'
should render identicon
'
,
()
=>
{
expect
(
el
.
nodeName
).
toBe
(
'
DIV
'
);
expect
(
el
.
classList
.
contains
(
'
identicon
'
)).
toBeTruthy
();
expect
(
el
.
getAttribute
(
'
style
'
).
indexOf
(
'
background-color
'
)
>
-
1
).
toBeTruthy
();
expect
(
vm
.
$
el
.
nodeName
).
toBe
(
'
DIV
'
);
expect
(
vm
.
$
el
.
classList
.
contains
(
'
identicon
'
)).
toBeTruthy
();
expect
(
vm
.
$
el
.
getAttribute
(
'
style
'
).
indexOf
(
'
background-color
'
)
>
-
1
).
toBeTruthy
();
});
});
});
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