summaryrefslogtreecommitdiffhomepage
path: root/test/test-manager
diff options
context:
space:
mode:
authorOskar <oskar@mullvad.net>2024-11-14 17:28:38 +0100
committerOskar <oskar@mullvad.net>2024-11-14 17:28:38 +0100
commitd4d0d4894b970ea537f01c87a7a1b777b4467d4f (patch)
tree4fa6d7ffdae2991b1d7283a072447dfaa0a93d90 /test/test-manager
parente3ce0eb5cd0610dbff6ec98cb8cb388415c74bf6 (diff)
parentadc1711478434f7defb214906cbeeed9a0f14bdf (diff)
downloadmullvadvpn-d4d0d4894b970ea537f01c87a7a1b777b4467d4f.tar.xz
mullvadvpn-d4d0d4894b970ea537f01c87a7a1b777b4467d4f.zip
Merge branch 'test-npm-workspace'
Diffstat (limited to 'test/test-manager')
-rw-r--r--test/test-manager/README.md4
-rw-r--r--test/test-manager/src/tests/ui.rs6
2 files changed, 6 insertions, 4 deletions
diff --git a/test/test-manager/README.md b/test/test-manager/README.md
index c35e7c5ba7..3d69a666ae 100644
--- a/test/test-manager/README.md
+++ b/test/test-manager/README.md
@@ -32,8 +32,8 @@ If a new module is created, make sure to add it in
It is possible to write tests for asserting graphical properties in the app, but
this is a slightly more involved process. GUI tests are written in `Typescript`,
-and reside in the `gui/test/e2e` folder in the app repository. Packaging of
-these tests is also done from the `gui/` folder.
+and reside in the `desktop/packages/mullvad-vpn/test/e2e` folder in the app repository.
+Packaging of these tests is also done from the `desktop/packages/mullvad-vpn/` folder.
Assuming that a graphical test `gui-test.spec` has been bundled correctly, it
can be invoked from any Rust function by calling
diff --git a/test/test-manager/src/tests/ui.rs b/test/test-manager/src/tests/ui.rs
index 266624cc68..53c769a7cc 100644
--- a/test/test-manager/src/tests/ui.rs
+++ b/test/test-manager/src/tests/ui.rs
@@ -154,7 +154,8 @@ async fn test_custom_access_methods_gui(
// * SHADOWSOCKS_SERVER_CIPHER
// * SHADOWSOCKS_SERVER_PASSWORD
//
- // See `gui/test/e2e/installed/state-dependent/api-access-methods.spec.ts`
+ // See
+ // `desktop/packages/mullvad-vpn/test/e2e/installed/state-dependent/api-access-methods.spec.ts`
// for details. The setup should be the same as in
// `test_manager::tests::access_methods::test_shadowsocks`.
//
@@ -223,7 +224,8 @@ async fn test_custom_bridge_gui(
// * SHADOWSOCKS_SERVER_CIPHER
// * SHADOWSOCKS_SERVER_PASSWORD
//
- // See `gui/test/e2e/installed/state-dependent/custom-bridge.spec.ts`
+ // See
+ // `desktop/packages/mullvad-vpn/test/e2e/installed/state-dependent/custom-bridge.spec.ts`
// for details. The setup should be the same as in
// `test_manager::tests::access_methods::test_shadowsocks`.