Skip to content

Commit ee5b1f7

Browse files
committed
[E2E] Fix the name of the plugin wording test
1 parent 208fb80 commit ee5b1f7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/e2e/tests/regression/first-start-form/user-agreements-form.e2e.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ fixture `Agreements Verification`
1212
.beforeEach(async t => {
1313
await t.maximizeWindow();
1414
});
15-
test('Verify that user can see message "While adding new visualization plugins, use files only from trusted authors to avoid automatic execution of malicious code." on EULA and Privacy Settings window when he opens the application for the very first time', async t => {
15+
test('Verify that user can see specific message on EULA and Privacy Settings window during the first app launch', async t => {
1616
//Verify that User Agreements modal form is displayed
1717
await t.expect(userAgreementPage.userAgreementsPopup.exists).ok('User Agreements Popup is shown');
1818
//Verify that section with plugin warning is displayed
1919
await t.expect(userAgreementPage.pluginSectionWithText.visible).ok('Plugin text is displayed');
20-
//Verify that text is correct
20+
//Verify that text that is displayed in window is 'While adding new visualization plugins, use files only from trusted authors to avoid automatic execution of malicious code.'
2121
const pluginText = userAgreementPage.pluginSectionWithText.innerText;
2222
await t.expect(pluginText).eql('While adding new visualization plugins, use files only from trusted authors to avoid automatic execution of malicious code.');
2323
});

0 commit comments

Comments
 (0)