donobu 5.19.0 → 5.20.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -82,6 +82,7 @@ exports.test = test_1.test.extend({
|
|
|
82
82
|
],
|
|
83
83
|
// Override the default page fixture
|
|
84
84
|
page: async ({ page, gptClient, headless, flowLoggingContext }, use, testInfo) => {
|
|
85
|
+
Logger_1.appLogger.info(`Test started: "${testInfo.title}"`);
|
|
85
86
|
const overallObjective = testInfo.annotations.find((v) => v.type === 'objective')?.description ??
|
|
86
87
|
null;
|
|
87
88
|
const visualCueDurationMs = v4_1.z
|
|
@@ -338,6 +339,7 @@ async function finalizeTest(page, testInfo, logBuffer) {
|
|
|
338
339
|
Logger_1.appLogger.error('tbd: failed to flush replacements', error);
|
|
339
340
|
}
|
|
340
341
|
}
|
|
342
|
+
Logger_1.appLogger.info(`Test ended: "${testInfo.title}" — status: ${testInfo.status}`);
|
|
341
343
|
}
|
|
342
344
|
/**
|
|
343
345
|
* A "v1" test is one that was generated by the Donobu app and
|
|
@@ -82,6 +82,7 @@ exports.test = test_1.test.extend({
|
|
|
82
82
|
],
|
|
83
83
|
// Override the default page fixture
|
|
84
84
|
page: async ({ page, gptClient, headless, flowLoggingContext }, use, testInfo) => {
|
|
85
|
+
Logger_1.appLogger.info(`Test started: "${testInfo.title}"`);
|
|
85
86
|
const overallObjective = testInfo.annotations.find((v) => v.type === 'objective')?.description ??
|
|
86
87
|
null;
|
|
87
88
|
const visualCueDurationMs = v4_1.z
|
|
@@ -338,6 +339,7 @@ async function finalizeTest(page, testInfo, logBuffer) {
|
|
|
338
339
|
Logger_1.appLogger.error('tbd: failed to flush replacements', error);
|
|
339
340
|
}
|
|
340
341
|
}
|
|
342
|
+
Logger_1.appLogger.info(`Test ended: "${testInfo.title}" — status: ${testInfo.status}`);
|
|
341
343
|
}
|
|
342
344
|
/**
|
|
343
345
|
* A "v1" test is one that was generated by the Donobu app and
|