Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
2e9cc2a7
Commit
2e9cc2a7
authored
Oct 01, 2014
by
Torkel Ödegaard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix for SharePanelCtrl-specs and travis-ci timezone issue
parent
282c834d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
9 deletions
+4
-9
src/test/specs/sharePanelCtrl-specs.js
+4
-9
No files found.
src/test/specs/sharePanelCtrl-specs.js
View file @
2e9cc2a7
define
([
'./helpers'
,
'moment'
,
'controllers/sharePanelCtrl'
],
function
(
helpers
,
moment
)
{
],
function
(
helpers
)
{
'use strict'
;
describe
(
'SharePanelCtrl'
,
function
()
{
...
...
@@ -13,10 +12,6 @@ define([
beforeEach
(
ctx
.
providePhase
());
beforeEach
(
ctx
.
createControllerPhase
(
'SharePanelCtrl'
));
function
getDate
(
year
,
month
,
day
)
{
return
moment
.
utc
(
new
Date
(
year
,
month
,
day
)).
toDate
();
}
describe
(
'shareUrl with current time range and panel'
,
function
()
{
it
(
'should generate share url relative time'
,
function
()
{
...
...
@@ -31,16 +26,16 @@ define([
it
(
'should generate share url absolute time'
,
function
()
{
ctx
.
$location
.
path
(
'/test'
);
ctx
.
scope
.
panel
=
{
id
:
22
};
ctx
.
timeSrv
.
time
=
{
from
:
getDate
(
2012
,
1
,
1
),
to
:
new
Date
(
2014
,
3
,
5
)
};
ctx
.
timeSrv
.
time
=
{
from
:
new
Date
(
1362178800000
),
to
:
new
Date
(
1396648800000
)
};
ctx
.
scope
.
buildUrl
();
expect
(
ctx
.
scope
.
shareUrl
).
to
.
be
(
'http://server/#/test?from=13
28050
800000&to=1396648800000&panelId=22&fullscreen'
);
expect
(
ctx
.
scope
.
shareUrl
).
to
.
be
(
'http://server/#/test?from=13
62178
800000&to=1396648800000&panelId=22&fullscreen'
);
});
it
(
'should generate share url with time as JSON strings'
,
function
()
{
ctx
.
$location
.
path
(
'/test'
);
ctx
.
scope
.
panel
=
{
id
:
22
};
ctx
.
timeSrv
.
time
=
{
from
:
new
Date
(
2012
,
1
,
1
).
toJSON
(),
to
:
new
Date
(
2014
,
3
,
5
).
toJSON
()
};
ctx
.
timeSrv
.
time
=
{
from
:
"2012-01-31T23:00:00.000Z"
,
to
:
"2014-04-04T22:00:00.000Z"
};
ctx
.
scope
.
buildUrl
();
expect
(
ctx
.
scope
.
shareUrl
).
to
.
be
(
'http://server/#/test?from=1328050800000&to=1396648800000&panelId=22&fullscreen'
);
...
...
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