Skip to content

Commit 122a7ce

Browse files
committed
chore: Fix import path for parseRssItems in tests
Updated the import statement in app.test.ts to correctly reference the module index. This ensures the tests use the intended source file.
1 parent d39c109 commit 122a7ce

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/__tests__/app.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// TODO: add better and more comprehensive tests for parseRssItems
2-
import { parseRssItems } from "../index";
2+
import { parseRssItems } from "../";
33

44
describe("parseRssItems", () => {
55
it("should parse a simple RSS feed", () => {

0 commit comments

Comments
 (0)