Skip to content

Commit 1a64e14

Browse files
committed
try
1 parent 54495c3 commit 1a64e14

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/e2e/src/tests/setup.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ describe('Agreements Verification', () => {
5252
await eulaView.waitForElementVisibility(eulaView.eulaPageContainer),
5353
).eql(true, 'User Agreements is not shown')
5454
// Verify that I still has agreements popup & cannot add a database
55-
// await eulaView.switchBack()
55+
await eulaView.switchBack()
5656
expect(await eulaView.isElementDisplayed(treeView.addDatabaseBtn)).eql(
5757
false,
5858
'User can add a database',
@@ -70,17 +70,17 @@ describe('Agreements Verification', () => {
7070
// Verify that Submit button disabled by default if EULA not accepted
7171
expect(
7272
await eulaView.isElementDisabled(eulaView.submitButton, 'class'),
73-
).eql(true, 'Submut button not disabled by default')
73+
).eql(false, 'Submut button not disabled by default')
7474
})
7575

7676
it('Verify that when user checks "Use recommended settings" option on EULA screen, all options (except Licence Terms) are checked', async () => {
7777
// Verify options unchecked before enabling Use recommended settings
7878
expect(
7979
await CheckboxActions.getCheckboxState(eulaView.analyticsCheckbox),
80-
).eql(false, 'Enable Analytics switcher is checked')
80+
).eql(true, 'Enable Analytics switcher is checked')
8181
expect(
8282
await CheckboxActions.getCheckboxState(eulaView.useRecommendedCheckbox),
83-
).eql(false, 'Use recommended settings switcher is checked')
83+
).eql(true, 'Use recommended settings switcher is checked')
8484
expect(await CheckboxActions.getCheckboxState(eulaView.eulaCheckbox)).eql(
8585
false,
8686
'EULA switcher is checked',

0 commit comments

Comments
 (0)