Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tests: revert need to specify empty header key
Browse files Browse the repository at this point in the history
Based on 6ca28ef
metonym committed Aug 23, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 05489cf commit 935450f
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
@@ -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>

0 comments on commit 935450f

Please sign in to comment.