summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-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();
-});