1
0
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:
Alex Andreev 2022-12-05 11:14:26 +03:00
parent be2cb63f6b
commit a38fdc7c78

View File

@ -80,9 +80,10 @@ describe("<LogList />", () => {
});
it("renders empty list", () => {
const { container } = render(<LogList model={getOnePodViewModel("tabId", {
getVisibleLogs: () => [],
})} />);
const { container } = render(<LogList
model={getOnePodViewModel("tabId", {
getVisibleLogs: () => [],
})} />);
expect(container.getElementsByClassName(".LogRow")).toHaveLength(0);
});
@ -105,7 +106,7 @@ describe("<LogList />", () => {
getVisibleLogs: () => [
"hello",
"world",
]
],
}, {
wrap: true,
});