fix: Correct import path for BrainyChat in tests

Fix case-sensitive import path (brainyChat.js -> BrainyChat.js)
This commit is contained in:
David Snelling 2025-08-18 08:58:33 -07:00
parent 0ec21e96e6
commit 0ff6d5cfb3

View file

@ -1,6 +1,6 @@
import { describe, it, expect, beforeEach } from 'vitest'
import { BrainyData } from '../src/brainyData.js'
import { BrainyChat } from '../src/chat/brainyChat.js'
import { BrainyChat } from '../src/chat/BrainyChat.js'
describe('BrainyChat', () => {
let brainy: BrainyData