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

Fixing tests

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
Alex Andreev 2023-03-27 11:16:05 +03:00
parent 8a407401c0
commit d8e1dadd4a

View File

@ -190,12 +190,12 @@ describe("download logs options in logs dock tab", () => {
it("logs have been called with query", () => { it("logs have been called with query", () => {
expect(callForLogsMock).toHaveBeenCalledWith( expect(callForLogsMock).toHaveBeenCalledWith(
{ name: "dockerExporter", namespace: "default" }, { name: "dockerExporter", namespace: "default" },
{ "previous": true, "timestamps": false }, { "previous": true, "timestamps": false, container: "docker-exporter" },
); );
}); });
it("shows save dialog with proper attributes", async () => { it("shows save dialog with proper attributes", async () => {
expect(openSaveFileDialogMock).toHaveBeenCalledWith("dockerExporter.log", "all-logs", "text/plain"); expect(openSaveFileDialogMock).toHaveBeenCalledWith("docker-exporter.log", "all-logs", "text/plain");
}); });
it("doesn't block download dropdown for interaction after click", async () => { it("doesn't block download dropdown for interaction after click", async () => {
@ -265,7 +265,7 @@ describe("download logs options in logs dock tab", () => {
it("logs have been called", () => { it("logs have been called", () => {
expect(callForLogsMock).toHaveBeenCalledWith( expect(callForLogsMock).toHaveBeenCalledWith(
{ name: "dockerExporter", namespace: "default" }, { name: "dockerExporter", namespace: "default" },
{ "previous": true, "timestamps": false }, { "previous": true, "timestamps": false, container: "docker-exporter" },
); );
}); });