diff options
| author | Oskar <oskar@mullvad.net> | 2025-10-01 18:05:32 +0200 |
|---|---|---|
| committer | Oskar <oskar@mullvad.net> | 2025-10-06 16:50:44 +0200 |
| commit | 21b145cc743465b6d0f55ee4027e8d90e3b44cc6 (patch) | |
| tree | de972a1e409589443a29c9bf5d9d1072abb7be6f | |
| parent | 7dab6e5e945c273c182591a7bfe4a1f48ec9c509 (diff) | |
| download | mullvadvpn-21b145cc743465b6d0f55ee4027e8d90e3b44cc6.tar.xz mullvadvpn-21b145cc743465b6d0f55ee4027e8d90e3b44cc6.zip | |
Disable split tunneling feature indicator test on Linux
| -rw-r--r-- | desktop/packages/mullvad-vpn/test/e2e/mocked/feature-indicators/feature-indicators.spec.ts | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/desktop/packages/mullvad-vpn/test/e2e/mocked/feature-indicators/feature-indicators.spec.ts b/desktop/packages/mullvad-vpn/test/e2e/mocked/feature-indicators/feature-indicators.spec.ts index b7786a983f..50da2e5c6a 100644 --- a/desktop/packages/mullvad-vpn/test/e2e/mocked/feature-indicators/feature-indicators.spec.ts +++ b/desktop/packages/mullvad-vpn/test/e2e/mocked/feature-indicators/feature-indicators.spec.ts @@ -17,6 +17,7 @@ type FeatureIndicatorTestOption = { featureIndicator: FeatureIndicator; featureIndicatorLabel: string; route: RoutePath; + skip?: boolean; }; type FeatureIndicatorWithOptionTestOption = FeatureIndicatorTestOption & { @@ -38,6 +39,7 @@ const featureIndicatorWithoutOption: FeatureIndicatorTestOption[] = [ featureIndicator: FeatureIndicator.splitTunneling, route: RoutePath.splitTunneling, featureIndicatorLabel: 'Split tunneling', + skip: process.platform === 'linux', }, { testId: 'server ip override', @@ -249,8 +251,12 @@ test.describe('Feature indicators', () => { }; featureIndicatorWithoutOption.forEach( - ({ testId, featureIndicator, route, featureIndicatorLabel }) => { + ({ testId, featureIndicator, route, featureIndicatorLabel, skip }) => { test(`Should navigate to setting when clicking on ${testId} feature indicator`, async () => { + if (skip === true) { + test.skip(); + } + await helpers.connectWithFeatures([featureIndicator]); await clickFeatureIndicator(featureIndicatorLabel, route); |
