Skip to content

Commit

Permalink
fix: Node.js CI
Browse files Browse the repository at this point in the history
  • Loading branch information
w8385 committed Apr 17, 2024
1 parent fbb35bc commit 615210c
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/group/group.controller.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ describe('GroupController', () => {
const group: CreateGroupDto = {
name: 'Group 1',
description: 'Group 1 description',
manager: 'user1',
subManagers: null,
members: ['user1', 'user2'],
};
Expand All @@ -46,7 +45,6 @@ describe('GroupController', () => {
expect(await groupController.create(group)).toBe(result);
expect(result).toHaveProperty('name', group.name);
expect(result).toHaveProperty('description', group.description);
expect(result).toHaveProperty('manager', group.manager);
expect(result).toHaveProperty('subManagers', group.subManagers);
expect(result).toHaveProperty('members', group.members);
});
Expand Down

0 comments on commit 615210c

Please sign in to comment.