auto(agent): Run expanded local discovery and continue with next actionable task

This commit is contained in:
OpenClaw 2026-03-06 15:39:11 +00:00
parent e238123393
commit 6dceec1893
14 changed files with 313 additions and 12 deletions

View file

@ -1,9 +1,11 @@
const { devices } = require('@playwright/test');
const { defineConfig, devices } = require('@playwright/test');
/** @type {import('@playwright/test').PlaywrightTestConfig} */
const config = {
testDir: './scripts',
module.exports = defineConfig({
testDir: './tests',
timeout: 30000,
expect: {
timeout: 5000
},
fullyParallel: true,
forbidOnly: !!process.env.CI,
retries: process.env.CI ? 2 : 0,
@ -17,9 +19,9 @@ const config = {
projects: [
{
name: 'chromium',
use: { ...devices['Desktop Chrome'] },
use: {
...devices['Desktop Chrome'],
},
},
],
};
module.exports = config;
});