ktx/packages/cli/test/context/ingest/adapters/dbt/parse.test.ts
2026-05-25 13:17:46 +02:00

8 lines
344 B
TypeScript

import { describe, expect, it } from 'vitest';
import { normalizeDbtPath } from '../../../../../src/context/ingest/adapters/dbt/parse.js';
describe('normalizeDbtPath', () => {
it('normalizes Windows separators to POSIX separators', () => {
expect(normalizeDbtPath('models\\marts\\orders.yml')).toBe('models/marts/orders.yml');
});
});