Skip to content

Commit 7e4d743

Browse files
Goumiesmarieflorescontact
authored andcommitted
[backend] WIP Update model: CRUD test (#4538)
1 parent 70b059e commit 7e4d743

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

opencti-platform/opencti-graphql/tests/02-integration/02-resolvers/case-incident-response-test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ describe('Case Incident Response resolver standard behavior', () => {
2121
}
2222
`;
2323

24-
it('should case incident response created', async () => {
24+
it('should Case Incident Response created', async () => {
2525
const CREATE_QUERY = gql`
2626
mutation CaseIncidentAdd($input: CaseIncidentAddInput!) {
2727
caseIncidentAdd(input: $input){
@@ -92,7 +92,7 @@ describe('Case Incident Response resolver standard behavior', () => {
9292
const queryResult = await queryAsAdmin({ query: LIST_QUERY, variables: { first: 10 } });
9393
expect(queryResult?.data?.caseIncidents.edges.length).toEqual(1);
9494
});
95-
it('should update case', async () => {
95+
it('should update Case Incident Response', async () => {
9696
const UPDATE_QUERY = gql`
9797
mutation CaseIncident($id: ID!, $input: [EditInput]!) {
9898
stixDomainObjectEdit(id: $id) {

0 commit comments

Comments
 (0)