mirror of
https://github.com/Kaelio/ktx.git
synced 2026-06-19 08:28:06 +02:00
8 lines
344 B
TypeScript
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');
|
|
});
|
|
});
|