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
61eb96ed
Commit
61eb96ed
authored
Aug 03, 2018
by
Tobias Skarhed
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove simple tests
parent
61e3a0cc
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
56 deletions
+0
-56
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.jest.ts
+0
-10
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 @
61e3a0cc
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 @
61e3a0cc
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.jest.ts
deleted
100644 → 0
View file @
61e3a0cc
import
{
GrafanaApp
}
from
'app/app'
;
jest
.
mock
(
'app/routes/routes'
);
describe
(
'GrafanaApp'
,
()
=>
{
var
app
=
new
GrafanaApp
();
it
(
'can call inits'
,
()
=>
{
expect
(
app
).
not
.
toBe
(
null
);
});
});
public/test/specs/app_specs.ts
deleted
100644 → 0
View file @
61e3a0cc
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