playwright
Advanced tools
Comparing version 1.50.0-alpha-2024-12-16 to 1.50.0-alpha-2024-12-17
@@ -262,3 +262,3 @@ "use strict"; | ||
}); | ||
if (slowTests.length) console.log(colors.yellow(' Consider splitting slow test files to speed up parallel execution')); | ||
if (slowTests.length) console.log(colors.yellow(' Consider running tests from slow files in parallel, see https://playwright.dev/docs/test-parallel.')); | ||
} | ||
@@ -367,7 +367,6 @@ _printSummary(summary) { | ||
function formatTestTitle(config, test, step, omitLocation = false) { | ||
var _step$location$line, _step$location, _step$location$column, _step$location2; | ||
// root, project, file, ...describes, test | ||
const [, projectName,, ...titles] = test.titlePath(); | ||
let location; | ||
if (omitLocation) location = `${relativeTestPath(config, test)}`;else location = `${relativeTestPath(config, test)}:${(_step$location$line = step === null || step === void 0 || (_step$location = step.location) === null || _step$location === void 0 ? void 0 : _step$location.line) !== null && _step$location$line !== void 0 ? _step$location$line : test.location.line}:${(_step$location$column = step === null || step === void 0 || (_step$location2 = step.location) === null || _step$location2 === void 0 ? void 0 : _step$location2.column) !== null && _step$location$column !== void 0 ? _step$location$column : test.location.column}`; | ||
if (omitLocation) location = `${relativeTestPath(config, test)}`;else location = `${relativeTestPath(config, test)}:${test.location.line}:${test.location.column}`; | ||
const projectTitle = projectName ? `[${projectName}] › ` : ''; | ||
@@ -374,0 +373,0 @@ const testTitle = `${projectTitle}${location} › ${titles.join(' › ')}`; |
{ | ||
"name": "playwright", | ||
"version": "1.50.0-alpha-2024-12-16", | ||
"version": "1.50.0-alpha-2024-12-17", | ||
"description": "A high-level API to automate web browsers", | ||
@@ -59,3 +59,3 @@ "repository": { | ||
"dependencies": { | ||
"playwright-core": "1.50.0-alpha-2024-12-16" | ||
"playwright-core": "1.50.0-alpha-2024-12-17" | ||
}, | ||
@@ -62,0 +62,0 @@ "optionalDependencies": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
3157393
35843
+ Addedplaywright-core@1.50.0-alpha-2024-12-17(transitive)
- Removedplaywright-core@1.50.0-alpha-2024-12-16(transitive)