summaryrefslogtreecommitdiffhomepage
path: root/gui/test
diff options
context:
space:
mode:
authorOskar <oskar@mullvad.net>2024-08-30 10:46:43 +0200
committerOskar <oskar@mullvad.net>2024-08-30 20:04:00 +0200
commit93dd4c574ca0f7bae46b9ab8a259e465ab856069 (patch)
tree4da22da638555f86a666d7007302b99c8b8260a6 /gui/test
parent059dafffdfd6d8c7825da4f8d518e3c82b943abf (diff)
downloadmullvadvpn-93dd4c574ca0f7bae46b9ab8a259e465ab856069.tar.xz
mullvadvpn-93dd4c574ca0f7bae46b9ab8a259e465ab856069.zip
Fix missing daemon event obfuscation type convertion
Diffstat (limited to 'gui/test')
-rw-r--r--gui/test/e2e/installed/state-dependent/tunnel-state.spec.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/gui/test/e2e/installed/state-dependent/tunnel-state.spec.ts b/gui/test/e2e/installed/state-dependent/tunnel-state.spec.ts
index af32668efb..53332ee6ab 100644
--- a/gui/test/e2e/installed/state-dependent/tunnel-state.spec.ts
+++ b/gui/test/e2e/installed/state-dependent/tunnel-state.spec.ts
@@ -90,6 +90,13 @@ test('App should show correct WireGuard transport protocol', async () => {
await expect(inData).toContainText(new RegExp('UDP$'));
});
+test('App should connect with Shadowsocks', async () => {
+ await exec('mullvad obfuscation set mode shadowsocks');
+ await expectConnected(page);
+ await exec('mullvad obfuscation set mode off');
+ await expectConnected(page);
+});
+
test('App should show correct tunnel protocol', async () => {
const tunnelProtocol = page.getByTestId('tunnel-protocol');
await expect(tunnelProtocol).toHaveText('WireGuard');