1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>
This commit is contained in:
Jari Kolehmainen 2021-09-24 13:28:32 +03:00
parent 7cd8d5e20e
commit 4b471cb97b
2 changed files with 5 additions and 5 deletions

View File

@ -23,7 +23,7 @@ import { isLongRunningRequest } from "../lens-proxy";
describe("isLongRunningRequest", () => {
it("returns true on watches", () => {
["watch=true", "watch=1"].forEach((param) => {
["watch=true", "watch=1", "watch"].forEach((param) => {
expect(
isLongRunningRequest(`/api/v1/namespaces/default/pods?${param}`)
).toBeTruthy();
@ -31,7 +31,7 @@ describe("isLongRunningRequest", () => {
});
it("returns false on disabled watches", () => {
["watch=false", "watch=0", "watch", ""].forEach((param) => {
["watch=false", "watch=0", ""].forEach((param) => {
expect(
isLongRunningRequest(`/api/v1/namespaces/default/pods?${param}`)
).toBeFalsy();
@ -39,7 +39,7 @@ describe("isLongRunningRequest", () => {
});
it("returns true on follows", () => {
["follow=true", "follow=1"].forEach((param) => {
["follow=true", "follow=1", "follow"].forEach((param) => {
expect(
isLongRunningRequest(`/api/v1/namespaces/default/pods/foo/log?${param}`)
).toBeTruthy();
@ -47,7 +47,7 @@ describe("isLongRunningRequest", () => {
});
it("returns false on disabled follows", () => {
["follow=false", "follow=0", "follow", ""].forEach((param) => {
["follow=false", "follow=0", ""].forEach((param) => {
expect(
isLongRunningRequest(`/api/v1/namespaces/default/pods/foo/log?${param}`)
).toBeFalsy();

View File

@ -40,7 +40,7 @@ export interface LensProxyFunctions {
kubeApiRequest: (args: ProxyApiRequestArgs) => void | Promise<void>;
}
const truthyParams = ["1", "true"];
const truthyParams = ["1", "true", ""];
const watchParam = "watch";
const followParam = "follow";