mirror of
https://github.com/anomalyco/opencode.git
synced 2026-05-21 02:22:40 +00:00
fix(test): replace structuredClone with spread for process.env (#14908)
This commit is contained in:
parent
36197f5ff8
commit
32417774c4
1 changed files with 1 additions and 1 deletions
|
|
@ -2,7 +2,7 @@ import { describe, expect, test, afterEach } from "bun:test"
|
|||
import { Ide } from "../../src/ide"
|
||||
|
||||
describe("ide", () => {
|
||||
const original = structuredClone(process.env)
|
||||
const original = { ...process.env }
|
||||
|
||||
afterEach(() => {
|
||||
Object.keys(process.env).forEach((key) => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue