2024-12-16 21:25:36 +00:00
|
|
|
import { describe, expect, it } from "@jest/globals"
|
|
|
|
|
2024-12-01 20:48:42 +01:00
|
|
|
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)
|
2024-12-01 20:48:42 +01:00
|
|
|
})
|
|
|
|
})
|