Skip to content

Commit 82af403

Browse files
HEYGULnlepageVincentHardouin
committed
chore(api): move expectations to understand flacky tests
Co-authored-by: Nicolas Lepage <nicolas.lepage@pix.fr> Co-authored-by: Vincent Hardouin <vincent.hardouin@pix.fr>
1 parent cf88fa8 commit 82af403

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

api/tests/identity-access-management/integration/infrastructure/repositories/client-application.repository.test.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -137,9 +137,10 @@ describe('Integration | Identity Access Management | Infrastructure | Repository
137137
.from('client_applications')
138138
.where({ clientId })
139139
.first();
140-
expect(updatedAt).to.be.greaterThan(createdAt);
140+
141141
expect(scopes).to.have.lengthOf(4);
142142
expect(scopes).to.have.members(['scope1', 'scope2', 'newScope1', 'newScope2']);
143+
expect(updatedAt).to.be.greaterThan(createdAt);
143144
});
144145
});
145146

@@ -175,9 +176,10 @@ describe('Integration | Identity Access Management | Infrastructure | Repository
175176
.from('client_applications')
176177
.where({ clientId })
177178
.first();
178-
expect(updatedAt).to.be.greaterThan(createdAt);
179+
179180
expect(scopes).to.have.lengthOf(1);
180181
expect(scopes).to.deep.equal(['scope4']);
182+
expect(updatedAt).to.be.greaterThan(createdAt);
181183
});
182184
});
183185

0 commit comments

Comments
 (0)