summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorTobias Järvelöv <tobias.jarvelov@mullvad.net>2025-02-27 11:01:40 +0100
committerTobias Järvelöv <tobias.jarvelov@mullvad.net>2025-04-28 12:53:03 +0200
commit6a11bc8bad9548846f8edef5eeef8204d55429c8 (patch)
treef2abfb01bfa900726e87d13fd08e8bafffcff883
parentb17ef0b91c32388abd6c549ff83380515c5ef352 (diff)
downloadmullvadvpn-6a11bc8bad9548846f8edef5eeef8204d55429c8.tar.xz
mullvadvpn-6a11bc8bad9548846f8edef5eeef8204d55429c8.zip
Remove test location.spec.ts
This test is never run by the test-manager and can therefore be removed.
-rw-r--r--desktop/packages/mullvad-vpn/test/e2e/installed/state-dependent/location.spec.ts25
1 files changed, 0 insertions, 25 deletions
diff --git a/desktop/packages/mullvad-vpn/test/e2e/installed/state-dependent/location.spec.ts b/desktop/packages/mullvad-vpn/test/e2e/installed/state-dependent/location.spec.ts
deleted file mode 100644
index f0bd2e11f7..0000000000
--- a/desktop/packages/mullvad-vpn/test/e2e/installed/state-dependent/location.spec.ts
+++ /dev/null
@@ -1,25 +0,0 @@
-import { expect, test } from '@playwright/test';
-import { Page } from 'playwright';
-
-import { startInstalledApp } from '../installed-utils';
-
-// This test expects the daemon to be logged into an account that has time left.
-
-let page: Page;
-
-test.beforeAll(async () => {
- ({ page } = await startInstalledApp());
-});
-
-test.afterAll(async () => {
- await page.close();
-});
-
-test('App should have a country', async () => {
- const countryLabel = page.getByTestId('country');
- await expect(countryLabel).not.toBeEmpty();
-
- const cityLabel = page.getByTestId('city');
- const noCityLabel = (await cityLabel.count()) === 0;
- expect(noCityLabel).toBeTruthy();
-});