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
9b629cd5
Commit
9b629cd5
authored
Jun 06, 2017
by
Torkel Ödegaard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dashboard_history: fixed history srv unit tests
parent
546d489d
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
public/app/features/dashboard/specs/history_srv_specs.ts
+3
-3
No files found.
public/app/features/dashboard/specs/history_srv_specs.ts
View file @
9b629cd5
...
...
@@ -15,9 +15,9 @@ describe('historySrv', function() {
beforeEach
(
angularMocks
.
module
(
'grafana.services'
));
beforeEach
(
angularMocks
.
inject
(
function
(
$httpBackend
)
{
ctx
.
$httpBackend
=
$httpBackend
;
$httpBackend
.
whenRoute
(
'GET'
,
'api/dashboards/
db
/:id/versions'
).
respond
(
versionsResponse
);
$httpBackend
.
whenRoute
(
'GET'
,
'api/dashboards/
db
/:id/compare/:original...:new'
).
respond
(
compareResponse
);
$httpBackend
.
whenRoute
(
'POST'
,
'api/dashboards/
db
/:id/restore'
)
$httpBackend
.
whenRoute
(
'GET'
,
'api/dashboards/
id
/:id/versions'
).
respond
(
versionsResponse
);
$httpBackend
.
whenRoute
(
'GET'
,
'api/dashboards/
id
/:id/compare/:original...:new'
).
respond
(
compareResponse
);
$httpBackend
.
whenRoute
(
'POST'
,
'api/dashboards/
id
/:id/restore'
)
.
respond
(
function
(
method
,
url
,
data
,
headers
,
params
)
{
const
parsedData
=
JSON
.
parse
(
data
);
return
[
200
,
restoreResponse
(
parsedData
.
version
)];
...
...
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