2026-04-07 13:20:31 +02:00
|
|
|
import { describe, it } from "node:test";
|
|
|
|
|
import { ObjeniousOperationsRepository } from "./ObjeniousOperationRepository.js";
|
|
|
|
|
import { httpObjClient, postgresClient } from "../config/config.test.js";
|
|
|
|
|
|
|
|
|
|
describe("[Integration] Test API requests", () => {
|
|
|
|
|
const repository = new ObjeniousOperationsRepository(
|
|
|
|
|
httpObjClient,
|
|
|
|
|
postgresClient
|
|
|
|
|
)
|
|
|
|
|
|
2026-04-15 11:47:33 +02:00
|
|
|
it("Read last sucessfull operation by line", () => {
|
2026-04-07 13:20:31 +02:00
|
|
|
|
|
|
|
|
})
|
|
|
|
|
})
|