diff options
author | Timmy Willison <timmywil@users.noreply.github.com> | 2024-04-01 10:23:36 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-01 10:23:36 -0400 |
commit | 284b082eb86602705519d6ca754c40f6d2f8fcc0 (patch) | |
tree | be30f1d0656bdab531f9eeefacc2a99e7d6d70bf /test/runner/reporter.js | |
parent | 691c0aeeded5dea1ca2a0c5474c7adfdb1dadffe (diff) | |
download | jquery-284b082eb86602705519d6ca754c40f6d2f8fcc0.tar.gz jquery-284b082eb86602705519d6ca754c40f6d2f8fcc0.zip |
Tests: share queue/browser handling for all worker types
- one queue to rule them all: browserstack, selenium, and jsdom
- retries and hard retries are now supported in selenium
- selenium tests now re-use browsers in the same way as browserstack
Close gh-5460
Diffstat (limited to 'test/runner/reporter.js')
-rw-r--r-- | test/runner/reporter.js | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/test/runner/reporter.js b/test/runner/reporter.js index 1c7467d6c..e79059648 100644 --- a/test/runner/reporter.js +++ b/test/runner/reporter.js @@ -115,10 +115,11 @@ export function reportTest( test, reportId, { browser, headless } ) { } export function reportEnd( result, reportId, { browser, headless, modules } ) { + const fullBrowser = getBrowserString( browser, headless ); console.log( - `\n\nTests for ${ chalk.yellow( modules.join( ", " ) ) } on ${ chalk.yellow( - getBrowserString( browser, headless ) - ) } finished in ${ prettyMs( result.runtime ) } (${ chalk.bold( reportId ) }).` + `\n\nTests finished in ${ prettyMs( result.runtime ) } ` + + `for ${ chalk.yellow( modules.join( "," ) ) } ` + + `in ${ chalk.yellow( fullBrowser ) } (${ chalk.bold( reportId ) })...` ); console.log( ( result.status !== "passed" ? |