mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
Linter fixes
Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
parent
be2cb63f6b
commit
a38fdc7c78
@ -80,9 +80,10 @@ describe("<LogList />", () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
it("renders empty list", () => {
|
it("renders empty list", () => {
|
||||||
const { container } = render(<LogList model={getOnePodViewModel("tabId", {
|
const { container } = render(<LogList
|
||||||
getVisibleLogs: () => [],
|
model={getOnePodViewModel("tabId", {
|
||||||
})} />);
|
getVisibleLogs: () => [],
|
||||||
|
})} />);
|
||||||
|
|
||||||
expect(container.getElementsByClassName(".LogRow")).toHaveLength(0);
|
expect(container.getElementsByClassName(".LogRow")).toHaveLength(0);
|
||||||
});
|
});
|
||||||
@ -105,7 +106,7 @@ describe("<LogList />", () => {
|
|||||||
getVisibleLogs: () => [
|
getVisibleLogs: () => [
|
||||||
"hello",
|
"hello",
|
||||||
"world",
|
"world",
|
||||||
]
|
],
|
||||||
}, {
|
}, {
|
||||||
wrap: true,
|
wrap: true,
|
||||||
});
|
});
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user