get rid of log

This commit is contained in:
2026-05-05 17:05:33 +02:00
parent fda86493b8
commit 4348479fcc
6 changed files with 16 additions and 30 deletions
+1 -1
View File
@@ -25,7 +25,7 @@ describe('File IO', () => {
const res = await env.from_file(file.name)
expect(res).toEqual({ok: true, data: 'coucou'})
})
test.todo('Fails safe if no access to read')
test.todo('Fails safe if no access to read', () => {})
})
describe('Folder', () => {
let folder: DirResult
-5
View File
@@ -1,5 +0,0 @@
import {Console} from 'logger-console'
import {Level, writers} from 'log'
const logger = new Console({minLevel: Level.DEBUG, with_color: true})
writers.set('console', logger)