-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cypress doesn't finish the process after the last test. The reporter will wait for all results to be sent to Qase and will not block the process after sending.
- Loading branch information
Showing
5 changed files
with
18 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
# [email protected] | ||
|
||
## What's new | ||
|
||
Cypress doesn't finish the process after the last test. | ||
The reporter will wait for all results to be sent to Qase and will not block the process after sending. | ||
|
||
# [email protected] | ||
|
||
## What's new | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
const runChild = async () => { | ||
setTimeout(() => { | ||
// do nothing | ||
}, 10000); | ||
} | ||
|
||
runChild(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,5 +5,5 @@ | |
"noEmit": false | ||
}, | ||
|
||
"include": ["./src/**/*.ts"] | ||
"include": ["./src/**/*.ts", "./src/*.js"], | ||
} |