mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-21 19:15:47 +00:00
test: fix qa scenario catalog sort lint
This commit is contained in:
parent
e8103c0153
commit
1ef4a70d70
1 changed files with 2 additions and 2 deletions
|
|
@ -25,9 +25,9 @@ describe("qa scenario catalog", () => {
|
|||
"image-generation-roundtrip",
|
||||
"character-vibes-gollum",
|
||||
"character-vibes-c3po",
|
||||
].sort();
|
||||
].toSorted();
|
||||
expect(
|
||||
scenarioIds.filter((scenarioId) => requiredScenarioIds.includes(scenarioId)).sort(),
|
||||
scenarioIds.filter((scenarioId) => requiredScenarioIds.includes(scenarioId)).toSorted(),
|
||||
).toEqual(requiredScenarioIds);
|
||||
expect(
|
||||
pack.scenarios
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue