1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Fix linter

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
Alex Andreev 2022-08-31 13:10:34 +03:00
parent 4e9f52f066
commit 4a3ac62209

View File

@ -38,7 +38,9 @@ describe("download logs options in logs dock tab", () => {
let getSplittedLogsMock: jest.Mock;
let showErrorNotificationMock: jest.Mock;
const logs = new Map([["timestamp", "some-logs"]]);
const pod = dockerPod;;loadLogsInjectable.lifecycle;
const pod = dockerPod;
loadLogsInjectable.lifecycle;
const container = {
name: "docker-exporter",
image: "docker.io/prom/node-exporter:v1.0.0-rc.0",
@ -150,7 +152,7 @@ describe("download logs options in logs dock tab", () => {
});
it("dropdown is enabled", () => {
expect(rendered.getByTestId("download-logs-dropdown")).not.toHaveAttribute("disabled")
expect(rendered.getByTestId("download-logs-dropdown")).not.toHaveAttribute("disabled");
});
describe("when clicking on dropdown", () => {