tests: revert need to specify empty header key

Based on 6ca28efc
This commit is contained in:
Eric Liu 2024-05-04 14:36:54 -07:00
commit 7b464408a9

View file

@ -9,48 +9,12 @@
] as const; ] as const;
const rows = [ const rows = [
{ { id: "a", name: "Load Balancer 3", port: 3000, rule: "Round robin" },
id: "a", { id: "b", name: "Load Balancer 1", port: 443, rule: "Round robin" },
name: "Load Balancer 3", { id: "c", name: "Load Balancer 2", port: 80, rule: "DNS delegation" },
port: 3000, { id: "d", name: "Load Balancer 6", port: 3000, rule: "Round robin" },
rule: "Round robin", { id: "e", name: "Load Balancer 4", port: 443, rule: "Round robin" },
overflow: null, { id: "f", name: "Load Balancer 5", port: 80, rule: "DNS delegation" },
},
{
id: "b",
name: "Load Balancer 1",
port: 443,
rule: "Round robin",
overflow: null,
},
{
id: "c",
name: "Load Balancer 2",
port: 80,
rule: "DNS delegation",
overflow: null,
},
{
id: "d",
name: "Load Balancer 6",
port: 3000,
rule: "Round robin",
overflow: null,
},
{
id: "e",
name: "Load Balancer 4",
port: 443,
rule: "Round robin",
overflow: null,
},
{
id: "f",
name: "Load Balancer 5",
port: 80,
rule: "DNS delegation",
overflow: null,
},
]; ];
</script> </script>