chore(deps-dev): switch prototype syntax in test, update vitest and biome (#1837)

This commit is contained in:
Michael Lehmann
2026-06-16 11:42:04 -07:00
committed by GitHub
parent 93823cfbdc
commit ffffc0fe9d
3 changed files with 106 additions and 103 deletions
+1 -1
View File
@@ -50,7 +50,7 @@ describe('Profile Manager', {}, () => {
it('guards against __proto__ section pollution', {}, () => {
const result = parseIni('[__proto__]\npolluted=true\n[safe]\nkey=val\n');
expect(result.__proto__).not.toHaveProperty('polluted');
expect(Object.getPrototypeOf(result)).not.toHaveProperty('polluted');
expect(result.safe).toEqual({ key: 'val' });
});