From 9fcbf893cf2599a3a5ba49dd74fe8c3d0ef0c63f Mon Sep 17 00:00:00 2001 From: Eric Liu Date: Sat, 23 Apr 2022 12:05:22 -0700 Subject: [PATCH] test(data-table): assert width, minWidth properties --- tests/DataTable.test.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/DataTable.test.svelte b/tests/DataTable.test.svelte index 4f6832f4..301efcf3 100644 --- a/tests/DataTable.test.svelte +++ b/tests/DataTable.test.svelte @@ -15,7 +15,7 @@ const headers: DataTableHeader[] = [ { key: "name", value: "Name" }, - { key: "protocol", value: "Protocol" }, + { key: "protocol", value: "Protocol", width: "400px", minWidth: "40%" }, { key: "port", value: "Port" }, { key: "rule", value: "Rule", sort: false }, ];