Files
libcrypto/test/init.ts
T
2024-06-05 23:23:13 +02:00

9 lines
272 B
TypeScript

import {GlobalRegistrator} from '@happy-dom/global-registrator'
import {Console} from 'logger-console'
import {writers, Level} from 'log'
GlobalRegistrator.register()
const logger = new Console({ minLevel: Level.DEBUG, with_color: true })
writers.set('console', logger)