Skip to content

Commit b2ed702

Browse files
committed
add parallelism
1 parent d43b83e commit b2ed702

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

.circleci/config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@ workflows:
401401

402402
- e2e-app-image:
403403
name: E2ETest (linux)
404-
parallelism: 1
404+
parallelism: 2
405405
requires:
406406
- Build extension - Linux (stage)
407407

@@ -510,7 +510,7 @@ workflows:
510510
# e2e tests on linux build
511511
- e2e-app-image:
512512
name: E2ETest (linux)
513-
parallelism: 1
513+
parallelism: 2
514514
requires:
515515
- Build extension - Linux (stage)
516516

@@ -545,10 +545,10 @@ workflows:
545545
env: prod
546546
<<: *prodFilter
547547

548-
# e2e desktop tests on linux build
548+
# e2e tests on linux build
549549
- e2e-app-image:
550550
name: E2ETest (Linux)
551-
parallelism: 1
551+
parallelism: 2
552552
requires:
553553
- Build extension - Linux (prod)
554554

tests/e2e/src/helpers/api/Eula.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export class Eula {
66
* Accept eula
77
*/
88
static async accept(): Promise<void> {
9-
const spec = { agreements: { analytics: true, notifications: true, eula: true } }
9+
const spec = { agreements: { analytics: true, notifications: true, eula: true, encryption: false } }
1010
const response = await CommonAPIRequests.sendPatchRequest(
1111
`/settings`,
1212
spec,

tests/e2e/src/tests/browser/verify-key-details.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ import {
2222
DatabasesActions,
2323
InputActions,
2424
KeyDetailsActions,
25+
NotificationActions,
2526
} from '@e2eSrc/helpers/common-actions'
2627
import { AddStringKeyView } from '@e2eSrc/page-objects/components/editor-view/AddStringKeyView'
2728
import { KeyTypesShort } from '@e2eSrc/helpers/constants'
@@ -97,6 +98,7 @@ describe('Key Details verifications', () => {
9798
)
9899

99100
await InputActions.typeText(addStringKeyView.keyNameInput, keyName)
101+
await NotificationActions.closeAllNotifications()
100102

101103
await ButtonActions.clickElement(addStringKeyView.addButton)
102104
await addStringKeyView.switchBack()

0 commit comments

Comments
 (0)