forked from cap-js-community/odata-v2-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathincidents.test.js
33 lines (26 loc) · 872 Bytes
/
incidents.test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
"use strict";
const cds = require("@sap/cds");
const supertest = require("supertest");
const util = require("./_env/util/request");
cds.test(__dirname + "/_env");
let request;
describe("incidents", () => {
beforeAll(async () => {
await global._init;
request = supertest(cds.app.server);
});
it("GET incidents service", async () => {
const response = await util.callRead(request, "/odata/v2/incidents", {
accept: "application/json",
});
expect(response.body).toBeDefined();
expect(response.body.d.EntitySets.sort()).toMatchSnapshot();
});
it("GET incidents service data", async () => {
const response = await util.callRead(request, "/odata/v2/incidents/Incidents", {
accept: "application/json",
});
expect(response.body).toBeDefined();
expect(response.body.d.results.length > 0).toEqual(true);
});
});