Skip to content

Commit

Permalink
Fix filling CI logs with noise
Browse files Browse the repository at this point in the history
  • Loading branch information
mxcl committed Dec 10, 2022
1 parent e389e77 commit bf79fec
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ export async function sandbox<T>(body: (tea: Tea) => Promise<T>, { throws }: { t

const PATH = Deno.env.get("PATH")
const HOME = Deno.env.get("HOME")
const CI = Deno.env.get("HOME")
if (!env) env = {}
Object.assign(env, {
PATH,
TEA_PREFIX: TEA_PREFIX.string,
HOME
PATH, HOME, CI,
TEA_PREFIX: TEA_PREFIX.string
})

cmd.push(
Expand Down

0 comments on commit bf79fec

Please sign in to comment.