We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f16848 commit 51c755bCopy full SHA for 51c755b
1 file changed
packages/plugin-typescript/src/lib/runner/utils.int.test.ts
@@ -1,5 +1,6 @@
1
import * as tsModule from 'typescript';
2
import { describe, expect } from 'vitest';
3
+import { osAgnosticPath } from '@code-pushup/test-utils';
4
import { loadTargetConfig } from './utils.js';
5
6
describe('loadTargetConfig', () => {
@@ -12,7 +13,9 @@ describe('loadTargetConfig', () => {
12
13
it('should return the parsed content of a tsconfig file and ist TypeScript helper to parse it', () => {
14
expect(
15
loadTargetConfig(
- 'packages/plugin-typescript/mocks/fixtures/basic-setup/tsconfig.init.json',
16
+ osAgnosticPath(
17
+ 'packages/plugin-typescript/mocks/fixtures/basic-setup/tsconfig.init.json',
18
+ ),
19
),
20
).toStrictEqual(
21
expect.objectContaining({
0 commit comments