test: tighten provider empty array assertions

This commit is contained in:
Shakker
2026-05-09 04:55:16 +01:00
parent 21d758c644
commit 84c4a4fc5b
10 changed files with 17 additions and 17 deletions

View File

@@ -34,6 +34,6 @@ describe("opencode provider policy public artifact", () => {
levels: expect.arrayContaining([{ id: "adaptive" }]),
defaultLevel: "adaptive",
});
expect(collectLegacyExtendedLevelIds(profile.levels)).toEqual([]);
expect(collectLegacyExtendedLevelIds(profile.levels)).toStrictEqual([]);
});
});