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,7 +80,8 @@ describe("<LogList />", () => {
}); });
it("renders empty list", () => { it("renders empty list", () => {
const { container } = render(<LogList model={getOnePodViewModel("tabId", { const { container } = render(<LogList
model={getOnePodViewModel("tabId", {
getVisibleLogs: () => [], getVisibleLogs: () => [],
})} />); })} />);
@ -105,7 +106,7 @@ describe("<LogList />", () => {
getVisibleLogs: () => [ getVisibleLogs: () => [
"hello", "hello",
"world", "world",
] ],
}, { }, {
wrap: true, wrap: true,
}); });