Skip to content

Commit c9d92a5

Browse files
committed
test: fix imports
1 parent 1df5c54 commit c9d92a5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/logger/__tests__/transports/console.test.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { deepStrictEqual, strictEqual } from 'assert';
22
import { describe, it } from 'node:test';
33

44
import { LogLevel } from '../../constants.mjs';
5-
import { console } from '../../transports/console.mjs';
5+
import console from '../../transports/console.mjs';
66

77
describe('console', () => {
88
it('should print debug messages', t => {

src/logger/__tests__/transports/github.test.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { deepStrictEqual, strictEqual } from 'assert';
22
import { describe, it } from 'node:test';
33

44
import { LogLevel } from '../../constants.mjs';
5-
import { github } from '../../transports/github.mjs';
5+
import github from '../../transports/github.mjs';
66

77
describe('github', () => {
88
it('should print debug messages', t => {

0 commit comments

Comments
 (0)