Use "db" service to avoid double call of service handlers

This commit is contained in:
Uwe Klinger
2021-05-19 11:37:04 +02:00
parent 48ee934b00
commit 5b4210bb38
2 changed files with 9 additions and 5 deletions

View File

@@ -228,8 +228,9 @@ describe("Notes", () => {
});
});
// TODO: Seems not to respect filter for targetkeyFieldName
/*
// TODO: Seems not to respect filter for targetKeyFieldName
/*
it.only("get supplier via navigation", async () => {
const { status, data } = await GET("/notes/Notes(545A3CF9-84CF-46C8-93DC-E29F0F2BC6BE)/supplier");
expect({ status, data }).to.containSubset({
@@ -237,7 +238,8 @@ describe("Notes", () => {
data: envelope("Suppliers", NotesExpandSuppliers[0].supplier )
});
});
*/
*/
after(() => mockServer.close());
});