1
0
mirror of https://git.cloudron.io/cloudron/syncthing-app synced 2026-05-02 14:55:49 +00:00

test: drop 'text=' prefix from charlie locators

charlie now treats bare strings as exact-match (was substring) and
RegExp as the explicit fuzzy escape hatch. The 'text=' prefix has
been removed and now throws a migration error from charlie.

Made-with: Cursor
This commit is contained in:
Girish Ramakrishnan
2026-04-27 17:03:24 +02:00
parent b3297ccc87
commit f861f076e4
+2 -2
View File
@@ -28,8 +28,8 @@ describe('Application life cycle test', function () {
async function logout() {
await goto(`https://${app.fqdn}`, 'Actions');
await click('text=Actions');
await click('text=Log Out');
await click('Actions');
await click('Log Out');
await waitFor('css=#user');
}