esm-logging/tests/logging.test.ts
Rodney, Tiara d27f6c65c1
init: working state
compiler + test suite are fine. logging module started, I'd say about 50%
complete.
2025-04-25 16:12:52 +02:00

7 lines
174 B
TypeScript

import * as logging from '../src/logging';
describe('Logger', () => {
it('can be instantiated', () => {
const logger = new logging.Logger('test', 0);
})
});