refactor: Use toStrictEqual instead of toEqual for tests
This commit is contained in:
@@ -23,6 +23,6 @@ describe('connectionSerializer', () => {
|
||||
updatedAt: connection.updatedAt.getTime(),
|
||||
};
|
||||
|
||||
expect(connectionSerializer(connection)).toEqual(expectedPayload);
|
||||
expect(connectionSerializer(connection)).toStrictEqual(expectedPayload);
|
||||
});
|
||||
});
|
||||
|
Reference in New Issue
Block a user