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
e03461ce
Commit
e03461ce
authored
Jan 08, 2019
by
Dominik Prokop
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed unused Popover component
parent
ec904cf6
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
32 deletions
+0
-32
public/app/core/components/Tooltip/Popover.test.tsx
+0
-16
public/app/core/components/Tooltip/__snapshots__/Popover.test.tsx.snap
+0
-16
No files found.
public/app/core/components/Tooltip/Popover.test.tsx
deleted
100644 → 0
View file @
ec904cf6
import
React
from
'react'
;
import
renderer
from
'react-test-renderer'
;
import
Popover
from
'./Popover'
;
describe
(
'Popover'
,
()
=>
{
it
(
'renders correctly'
,
()
=>
{
const
tree
=
renderer
.
create
(
<
Popover
className=
"test-class"
placement=
"auto"
content=
"Popover text"
>
<
button
>
Button with Popover
</
button
>
</
Popover
>
)
.
toJSON
();
expect
(
tree
).
toMatchSnapshot
();
});
});
public/app/core/components/Tooltip/__snapshots__/Popover.test.tsx.snap
deleted
100644 → 0
View file @
ec904cf6
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`Popover renders correctly 1`] = `
<div
className="popper__manager test-class"
onClick={[Function]}
>
<div
className="popper_ref "
>
<button>
Button with Popover
</button>
</div>
</div>
`;
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