Skip to content

Commit

Permalink
tests: revert need to specify empty header key
Browse files Browse the repository at this point in the history
Based on 6ca28ef
  • Loading branch information
metonym committed May 4, 2024
1 parent ab3b196 commit cd90958
Showing 1 changed file with 6 additions and 42 deletions.
48 changes: 6 additions & 42 deletions tests/DataTableAppendColumns.test.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -9,48 +9,12 @@
] as const;
const rows = [
{
id: "a",
name: "Load Balancer 3",
port: 3000,
rule: "Round robin",
overflow: null,
},
{
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,
},
{ id: "a", name: "Load Balancer 3", port: 3000, rule: "Round robin" },
{ id: "b", name: "Load Balancer 1", port: 443, rule: "Round robin" },
{ id: "c", name: "Load Balancer 2", port: 80, rule: "DNS delegation" },
{ id: "d", name: "Load Balancer 6", port: 3000, rule: "Round robin" },
{ id: "e", name: "Load Balancer 4", port: 443, rule: "Round robin" },
{ id: "f", name: "Load Balancer 5", port: 80, rule: "DNS delegation" },
];
</script>

Expand Down

0 comments on commit cd90958

Please sign in to comment.