Skip to content

Commit

Permalink
revert temporary changes
Browse files Browse the repository at this point in the history
  • Loading branch information
uidp committed Nov 17, 2023
1 parent 46f1b1e commit 2b678ae
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ describe('UserLoginMigrationController (API)', () => {
expect(response.status).toEqual(HttpStatus.CREATED);
});

it.only('should return the user login migration', async () => {
it('should return the user login migration', async () => {
const { loggedInClient, sourceSystem, targetSystem } = await setup();

const response: Response = await loggedInClient.post(`/start`);
Expand Down
2 changes: 1 addition & 1 deletion apps/server/src/shared/domain/entity/base.entity.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@ export abstract class BaseEntityWithTimestamps implements AuthorizableObject {
}

// These fields are explicitly ignored when updating an entity. See base.do.repo.ts.
export const baseEntityProperties = ['updatedAt', 'createdAt'];
export const baseEntityProperties = ['id', '_id', 'updatedAt', 'createdAt'];
2 changes: 1 addition & 1 deletion jest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ if (!process.env.RUN_WITHOUT_JEST_COVERAGE) {
},
// add custom paths: './apps/server/path...': { branches: X, functions: ... }
},
testTimeout: 3600000
testTimeout: 5000
};
}

Expand Down

0 comments on commit 2b678ae

Please sign in to comment.