Skip to content

Commit e7b669a

Browse files
authored
e2e: decrease stop app waitTime (#3847)
1 parent 54752f1 commit e7b669a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ Thanks to: @dathbe.
2121
- [tests] refactor: simplify jest config file (#3844)
2222
- [tests] refactor: extract constants for weather electron tests (#3845)
2323
- [tests] replace `console` with `Log` in calendar `debug.js` to avoid exception in eslint config (#3846)
24+
- [tests] speed up e2e tests (#3847)
2425

2526
### Updated
2627

tests/e2e/helpers/global-setup.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ exports.startApplication = async (configFilename, exec) => {
3434
return global.app.start();
3535
};
3636

37-
exports.stopApplication = async (waitTime = 1000) => {
37+
exports.stopApplication = async (waitTime = 10) => {
3838
if (global.window) {
3939
// no closing causes jest errors and memory leaks
4040
global.window.close();

0 commit comments

Comments
 (0)