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
6f1b125c
Unverified
Commit
6f1b125c
authored
Aug 03, 2018
by
Marcus Efraimsson
Committed by
GitHub
Aug 03, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #12808 from dehrax/12224-simple
Karma to Jest: remove tests
parents
c900a301
61eb96ed
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
46 deletions
+0
-46
public/app/features/alerting/specs/alert_tab_specs.ts
+0
-17
public/app/features/dashboard/specs/dashboard_srv_specs.ts
+0
-15
public/test/specs/app_specs.ts
+0
-14
No files found.
public/app/features/alerting/specs/alert_tab_specs.ts
deleted
100644 → 0
View file @
c900a301
import
{
describe
,
it
,
expect
}
from
'test/lib/common'
;
import
{
AlertTabCtrl
}
from
'../alert_tab_ctrl'
;
describe
(
'AlertTabCtrl'
,
()
=>
{
var
$scope
=
{
ctrl
:
{},
};
describe
(
'with null parameters'
,
()
=>
{
it
(
'can be created'
,
()
=>
{
var
alertTab
=
new
AlertTabCtrl
(
$scope
,
null
,
null
,
null
,
null
,
null
);
expect
(
alertTab
).
to
.
not
.
be
(
null
);
});
});
});
public/app/features/dashboard/specs/dashboard_srv_specs.ts
deleted
100644 → 0
View file @
c900a301
import
{
describe
,
beforeEach
,
expect
}
from
'test/lib/common'
;
import
{
DashboardSrv
}
from
'../dashboard_srv'
;
describe
(
'dashboardSrv'
,
function
()
{
var
_dashboardSrv
;
beforeEach
(()
=>
{
_dashboardSrv
=
new
DashboardSrv
({},
{},
{});
});
it
(
'should do something'
,
()
=>
{
expect
(
_dashboardSrv
).
not
.
to
.
be
(
null
);
});
});
public/test/specs/app_specs.ts
deleted
100644 → 0
View file @
c900a301
import
{
describe
,
it
,
expect
}
from
'test/lib/common'
;
import
{
GrafanaApp
}
from
'app/app'
;
describe
(
'GrafanaApp'
,
()
=>
{
var
app
=
new
GrafanaApp
();
it
(
'can call inits'
,
()
=>
{
expect
(
app
).
to
.
not
.
be
(
null
);
});
});
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