13 lines
379 B
TypeScript
13 lines
379 B
TypeScript
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())
|
|
expect(true)
|
|
})
|
|
})
|