1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00

makes the 'Should update last seen for known toggles test' no longer … (#3293)

The patched test is currently depending on runtime to take more than a
millisecond to update the tested property. That's not always true and
more so on a fast machine, which makes this test flakey. This forces the
old timestamp to be 100 ms in the past so that the checked property must be at least 100 ms different if the update occurred
This commit is contained in:
Simon Hornby 2023-03-10 09:58:43 +02:00 committed by GitHub
parent 763cd56af3
commit 035daf675f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,7 +22,7 @@ afterAll(async () => {
test('Should update last seen for known toggles', async () => {
const service = new LastSeenService(stores, config);
const time = Date.now();
const time = Date.now() - 100;
await stores.featureToggleStore.create('default', { name: 'ta1' });
const metrics: IClientMetricsEnv[] = [