Skip to content

Commit

Permalink
[backend] WIP Update model: CRUD test (#4538)
Browse files Browse the repository at this point in the history
  • Loading branch information
Goumies authored and marieflorescontact committed Jul 16, 2024
1 parent 70b059e commit 7e4d743
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ describe('Case Incident Response resolver standard behavior', () => {
}
`;

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

0 comments on commit 7e4d743

Please sign in to comment.