import { test, expect } from "bun:test"; import path from 'path'; import { parseCartList } from "../src/utils/htmlParser"; test('Load cart list', async () => { const html = await Bun.file(path.resolve(__dirname, '../', 'debug-html', 'allin_603_outlook_com', 'cart.html')).text(); const result = parseCartList(html); expect(result).toBeDefined(); });