summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorTobias Järvelöv <tobias.jarvelov@mullvad.net>2025-09-11 13:42:19 +0200
committerTobias Järvelöv <tobias.jarvelov@mullvad.net>2025-09-18 13:06:33 +0200
commit1460901b28f1bb79f6ed0f3ef1d4f98bfb805654 (patch)
tree80a45c57fe8cdf49a56852a6f5e40509521b58e5
parentac274a610a50fc6b55170bba580856797b985b89 (diff)
downloadmullvadvpn-1460901b28f1bb79f6ed0f3ef1d4f98bfb805654.tar.xz
mullvadvpn-1460901b28f1bb79f6ed0f3ef1d4f98bfb805654.zip
Add testid to LinuxApplicationList
-rw-r--r--desktop/packages/mullvad-vpn/src/renderer/components/views/split-tunneling/components/linux-settings/components/linux-application-list/LinuxApplicationList.tsx8
1 files changed, 7 insertions, 1 deletions
diff --git a/desktop/packages/mullvad-vpn/src/renderer/components/views/split-tunneling/components/linux-settings/components/linux-application-list/LinuxApplicationList.tsx b/desktop/packages/mullvad-vpn/src/renderer/components/views/split-tunneling/components/linux-settings/components/linux-application-list/LinuxApplicationList.tsx
index 817c6e10c2..31fc18409d 100644
--- a/desktop/packages/mullvad-vpn/src/renderer/components/views/split-tunneling/components/linux-settings/components/linux-application-list/LinuxApplicationList.tsx
+++ b/desktop/packages/mullvad-vpn/src/renderer/components/views/split-tunneling/components/linux-settings/components/linux-application-list/LinuxApplicationList.tsx
@@ -17,5 +17,11 @@ export function LinuxApplicationList() {
const filteredApplications = useFilteredApplications();
- return <ApplicationList applications={filteredApplications} rowRenderer={rowRenderer} />;
+ return (
+ <ApplicationList
+ data-testid="linux-applications"
+ applications={filteredApplications}
+ rowRenderer={rowRenderer}
+ />
+ );
}