13 lines
379 B
TypeScript
Raw Normal View History

2024-12-16 21:25:36 +00:00
import { describe, expect, it } from "@jest/globals"
import { daily } from "@/main.ts"
import { ActualImpl } from "@/actual.ts"
import { BankStub } from "./stubs/bankStub.ts"
describe("Main logic of the application", () => {
it("should import the transactions to Actual Budget", async () => {
await daily(await ActualImpl.init(), new BankStub())
2024-12-16 21:25:36 +00:00
expect(true)
})
})