fix: unwanted logging

This commit is contained in:
Andrew Bastin
2022-02-19 13:45:07 +05:30
parent 774c51ef95
commit e183c82759
2 changed files with 1 additions and 8 deletions

View File

@@ -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", () => {