mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-06 06:41:08 +00:00
test: default vitest root projects to threads
This commit is contained in:
@@ -146,7 +146,9 @@ describe("scripts/test-extension.mjs", () => {
|
||||
resolveExtensionTestPlan({ cwd: process.cwd(), targetArg: extensionId }).hasTests,
|
||||
);
|
||||
|
||||
expect(uniqueAssigned.toSorted((left, right) => left.localeCompare(right))).toEqual(expected);
|
||||
expect(uniqueAssigned.toSorted((left, right) => left.localeCompare(right))).toEqual(
|
||||
expected.toSorted((left, right) => left.localeCompare(right)),
|
||||
);
|
||||
expect(assigned).toHaveLength(expected.length);
|
||||
|
||||
const totals = shards.map((shard) => shard.testFileCount);
|
||||
|
||||
Reference in New Issue
Block a user