mirror of
https://github.com/stefanpejcic/openpanel
synced 2025-06-26 18:28:26 +00:00
24 lines
614 B
TypeScript
24 lines
614 B
TypeScript
import axios from "axios";
|
|
|
|
import JsonServer from "../../src/index";
|
|
import "./index.mock";
|
|
|
|
describe("getMany", () => {
|
|
it("correct response", async () => {
|
|
const { data } = await JsonServer(
|
|
"https://api.nestjsx-crud.refine.dev",
|
|
axios,
|
|
).getMany!({
|
|
resource: "posts",
|
|
ids: [
|
|
"6536e986-e500-4933-b154-b51d60d702c2",
|
|
"7810bbc3-b133-4f85-8c6b-d7806b329f17",
|
|
],
|
|
});
|
|
|
|
expect(data[0]["id"]).toBe("6536e986-e500-4933-b154-b51d60d702c2");
|
|
expect(data[1]["id"]).toBe("7810bbc3-b133-4f85-8c6b-d7806b329f17");
|
|
expect(data.length).toBe(2);
|
|
});
|
|
});
|