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
53b06311
Commit
53b06311
authored
Jan 08, 2018
by
Kushal Pandya
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
GeoNodeEventStatus Component tests
parent
7e2c1283
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
50 additions
and
0 deletions
+50
-0
spec/javascripts/geo_nodes/components/geo_node_event_status_spec.js
...cripts/geo_nodes/components/geo_node_event_status_spec.js
+50
-0
No files found.
spec/javascripts/geo_nodes/components/geo_node_event_status_spec.js
0 → 100644
View file @
53b06311
import
Vue
from
'
vue
'
;
import
geoNodeEventStatusComponent
from
'
ee/geo_nodes/components/geo_node_event_status.vue
'
;
import
{
mockNodeDetails
}
from
'
../mock_data
'
;
import
mountComponent
from
'
../../helpers/vue_mount_component_helper
'
;
const
createComponent
=
()
=>
{
const
Component
=
Vue
.
extend
(
geoNodeEventStatusComponent
);
return
mountComponent
(
Component
,
{
eventId
:
mockNodeDetails
.
lastEvent
.
id
,
eventTimeStamp
:
mockNodeDetails
.
lastEvent
.
timeStamp
,
});
};
describe
(
'
GeoNodeEventStatus
'
,
()
=>
{
let
vm
;
beforeEach
(()
=>
{
vm
=
createComponent
();
});
afterEach
(()
=>
{
vm
.
$destroy
();
});
describe
(
'
computed
'
,
()
=>
{
describe
(
'
timeStamp
'
,
()
=>
{
it
(
'
returns timestamp Date object
'
,
()
=>
{
expect
(
vm
.
timeStamp
instanceof
Date
).
toBeTruthy
();
});
});
describe
(
'
timeStampString
'
,
()
=>
{
it
(
'
returns formatted timestamp string
'
,
()
=>
{
expect
(
vm
.
timeStampString
).
toContain
(
'
Nov 21, 2017
'
);
});
});
});
describe
(
'
template
'
,
()
=>
{
it
(
'
renders container elements correctly
'
,
()
=>
{
expect
(
vm
.
$el
.
classList
.
contains
(
'
node-detail-value
'
)).
toBeTruthy
();
expect
(
vm
.
$el
.
querySelectorAll
(
'
strong
'
).
length
).
not
.
toBe
(
0
);
expect
(
vm
.
$el
.
querySelector
(
'
strong
'
).
innerText
.
trim
()).
toBe
(
`
${
mockNodeDetails
.
lastEvent
.
id
}
`
);
expect
(
vm
.
$el
.
querySelector
(
'
.event-status-timestamp
'
).
innerText
).
toContain
(
'
ago
'
);
});
});
});
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