| 1531 | expect(users[1].username).to.equal('Paul'); |
| 1532 | |
| 1533 | const formatDate = val => moment(new Date(val)).utc().format('YYYY-MM-DD h:mm'); |
| 1534 | |
| 1535 | expect(formatDate(users[0].deletedAt)).to.equal(date); |
| 1536 | expect(formatDate(users[1].deletedAt)).to.equal(date); |