fix: correct jest roots and test import path

This commit is contained in:
Tiara Rodney 2026-03-13 22:38:41 +01:00
parent 0cea450c0a
commit 25ec89c3b4
No known key found for this signature in database
GPG key ID: 5CD8EC1D46106723
2 changed files with 2 additions and 2 deletions

View file

@ -19,5 +19,5 @@ export default {
}
],
],
roots: ['./tests']
roots: ['./tests/unit']
}

View file

@ -1,5 +1,5 @@
import {expect, jest, test} from '@jest/globals';
import * as log_level from '../src/log-level';
import * as log_level from '../../src/log-level';
describe('Logger', () => {
it('can be instantiated', () => {