cypress-gherkin #1

Merged
Simon merged 9 commits from cypress-gherkin into master 2021-09-08 12:54:53 +02:00
Showing only changes of commit 7a751125aa - Show all commits

View File

@ -160,8 +160,11 @@ describe("it test the api", () => {
expect(response.headers["content-type"]).to.eq("application/fhir+json;charset=UTF-8");
expect(response.body).to.have.property("resourceType", "CommunicationRequest");
expect(response.body).to.have.property('id');
expect(response.body).to.have.property('status', 'draft');
communicationRequestId = response.body.id
});
});
});