fix: unwanted logging
This commit is contained in:
parent
774c51ef95
commit
e183c82759
2 changed files with 1 additions and 8 deletions
|
|
@ -13,11 +13,7 @@ const fakeResponse: TestResponse = {
|
|||
const func = (script: string, envs: TestResult["envs"]) =>
|
||||
pipe(
|
||||
execTestScript(script, envs, fakeResponse),
|
||||
TE.map((x) => x.tests),
|
||||
TE.mapLeft((x) => {
|
||||
console.log(x)
|
||||
return x
|
||||
})
|
||||
TE.map((x) => x.tests)
|
||||
)
|
||||
|
||||
describe("pw.env.getResolve", () => {
|
||||
|
|
|
|||
|
|
@ -464,9 +464,6 @@ export const execTestScript = (
|
|||
E.getOrElse(() => vm.undefined)
|
||||
)
|
||||
|
||||
console.log("result")
|
||||
console.log(result)
|
||||
|
||||
return {
|
||||
value: result,
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue