diff options
| author | Tobias Järvelöv <tobias.jarvelov@mullvad.net> | 2025-02-27 11:01:40 +0100 |
|---|---|---|
| committer | Tobias Järvelöv <tobias.jarvelov@mullvad.net> | 2025-04-28 12:53:03 +0200 |
| commit | 6a11bc8bad9548846f8edef5eeef8204d55429c8 (patch) | |
| tree | f2abfb01bfa900726e87d13fd08e8bafffcff883 | |
| parent | b17ef0b91c32388abd6c549ff83380515c5ef352 (diff) | |
| download | mullvadvpn-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.ts | 25 |
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(); -}); |
